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