import type { ReactNode } from 'react'; import type { XAxisOptions, YAxisOptions, ChartProps, LabelFormatter } from '@shopify/polaris-viz-core'; import type { Annotation, BottomOnlyLegendPosition, LineChartSlotProps, RenderAnnotationContentData, RenderLegendContent, TooltipOptions } from '../../types'; export declare type LineChartProps = { annotations?: Annotation[]; errorText?: string; emptyStateText?: string; legendPosition?: BottomOnlyLegendPosition; renderAnnotationContent?: (data: RenderAnnotationContentData) => ReactNode; renderLegendContent?: RenderLegendContent; renderHiddenLegendLabel?: (count: number) => string; seriesNameFormatter?: LabelFormatter; showLegend?: boolean; hideLegendOverflow?: boolean; skipLinkText?: string; tooltipOptions?: TooltipOptions; xAxisOptions?: Partial; yAxisOptions?: Partial; slots?: { chart?: (props: LineChartSlotProps) => JSX.Element; }; scrollContainer?: Element | null; } & ChartProps; export declare function LineChart(props: LineChartProps): JSX.Element; //# sourceMappingURL=LineChart.d.ts.map