import * as React from 'react';
import { type SeriesId } from '@mui/x-charts/internals';
import { type FunnelSectionClasses } from "./funnelSectionClasses.js";
export interface FunnelSectionLabelConfig {
  x: number;
  y: number;
  value: string | null;
  textAnchor?: React.SVGProps<SVGTextElement>['textAnchor'];
  dominantBaseline?: React.SVGProps<SVGTextElement>['dominantBaseline'];
}
export interface FunnelSectionLabelProps extends Omit<React.SVGProps<SVGTextElement>, 'ref' | 'id'> {
  classes?: Partial<FunnelSectionClasses>;
  label: FunnelSectionLabelConfig;
  seriesId: SeriesId;
  dataIndex: number;
}
/**
 * @ignore - internal component.
 */
declare const FunnelSectionLabel: React.ForwardRefExoticComponent<FunnelSectionLabelProps & React.RefAttributes<{}>>;
export { FunnelSectionLabel };