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