import { default as React } from 'react'; import { SxProps } from '@mui/material'; type DataPoint = { x: string | number; y: number; }; type LineSeries = { id: string; data: DataPoint[]; }; type AbyssLineChartProps = { data: LineSeries[]; xLabel?: string; yLabel?: string; height?: number; enableZoom?: boolean; hiddenSeries?: string[]; onSeriesToggle?: (seriesId: string) => void; formatXValue?: (value: any) => string; formatYValue?: (value: any) => string; sx?: SxProps; colors?: string[]; enableArea?: boolean; curve?: 'linear' | 'monotoneX' | 'cardinal' | 'step'; }; export declare const AbyssLineChart: React.FC; export {};