interface IChartProps { data: { name: string; values: { month: string; value: number; }[]; isSmooth?: boolean; }[]; height: number; yAxisLabelType?: 'inPercent' | 'inValue' | 'custom'; customLabelFormatter?: (value: number) => string; currency?: string; colors?: string[]; customLegend: React.ReactNode; } declare const AreaLineChart: ({ data, height, customLabelFormatter, yAxisLabelType, currency, colors, customLegend }: IChartProps) => import("react/jsx-runtime").JSX.Element; export { AreaLineChart }; export default AreaLineChart;