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