export interface IMultiLineChartProps { data: any; width?: number; height?: number; margin?: { top: number; right: number; bottom: number; left: number; }; yAxisData: any; xAxisData: any; colors?: string[]; line?: boolean; yAxisLabelType?: 'inPercent' | 'inValue' | 'custom'; customLabelFormatter?: (value: number) => string; currency?: string; } declare const MultiLineChart: ({ data, yAxisData, xAxisData, colors, height, margin, line, yAxisLabelType, currency, customLabelFormatter, }: IMultiLineChartProps) => import("react/jsx-runtime").JSX.Element; export { MultiLineChart }; export default MultiLineChart;