import React from "react"; import type { ViewProps } from "react-native"; import { InteractiveLineChartProps } from "./InteractiveMultiLineChart"; export type MultiLineChartProps, Static extends boolean = false> = React.PropsWithChildren<{ points: Data; onCanvasResize?: (width: number, height: number) => void; } & Exclude & { children: (args: { points: Data; height: number; width: number; }) => React.ReactNode; } & (Static extends true ? { isStatic: true; } : { isStatic: false; } & InteractiveLineChartProps)>; export declare const MultiLineChart: { , Static extends boolean = false>({ isStatic, ...props }: MultiLineChartProps): JSX.Element; displayName: string; }; //# sourceMappingURL=MultiLineChart.d.ts.map