/// import type { CustomTooltipProps, LineProps, TimeseriesReferenceLineProps, TimeseriesStylingProps } from "./types"; export interface TimeseriesChartProps { data: any; xAxisDataKey?: string; yAxisDataKey?: string; lines: LineProps[]; refLines?: TimeseriesReferenceLineProps[]; singleLineMode?: boolean; drawDots?: boolean; legend?: boolean; grid?: boolean; tickFormatterFunc?: (timeStamp: number) => string; xDomainSpread?: number | null; yDomainSpread?: number | null; connectNulls?: boolean; regularIntervalTicks?: boolean; tooltipFormatterFunc?: ({ active, payload }: CustomTooltipProps) => JSX.Element; stylingProps?: TimeseriesStylingProps; } declare const TimeseriesChart: ({ data, xAxisDataKey, yAxisDataKey, lines, refLines, singleLineMode, drawDots, legend, grid, tickFormatterFunc, xDomainSpread, yDomainSpread, connectNulls, regularIntervalTicks, tooltipFormatterFunc, stylingProps, }: TimeseriesChartProps) => JSX.Element; export default TimeseriesChart; //# sourceMappingURL=timeseries.d.ts.map