import { type Props as RawProps } from '$src/lib/visualizations/raw/charts/LineChart'; import { type QueryRequestProps } from '$src/data'; type Props = Omit & QueryRequestProps & { download?: boolean; }; declare function QueryLineChart({ queryPath, params, download, tanstaskQueryOptions, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export default QueryLineChart; //# sourceMappingURL=LineChart.d.ts.map