import * as React from 'react';
import { type SeriesId } from '@mui/x-charts/internals';
import { type FunnelSectionClasses } from "./funnelSectionClasses.js";
export interface FunnelSectionProps extends Omit<React.SVGProps<SVGPathElement>, 'ref' | 'id'> {
  seriesId: SeriesId;
  dataIndex: number;
  color: string;
  classes?: Partial<FunnelSectionClasses>;
  variant?: 'filled' | 'outlined';
}
export declare const FunnelSectionPath: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, Pick<React.SVGProps<SVGPathElement>, keyof React.SVGProps<SVGPathElement>>, {}>;
/**
 * @ignore - internal component.
 */
declare const FunnelSection: React.ForwardRefExoticComponent<FunnelSectionProps & React.RefAttributes<{}>>;
export { FunnelSection };