import { Style } from 'inlines'; type LineChartProps = { data: Record[]; xKey: string; yKeys: string[]; xFormat?: (x: number) => string; yFormat?: (y: number) => string; showLegend?: boolean; mono?: boolean; style?: Style; }; declare function LineChart({ data, xKey, yKeys, xFormat, yFormat, showLegend, mono, style, }: LineChartProps): import("react/jsx-runtime").JSX.Element; export type { LineChartProps }; export { LineChart };