import type { ChartState, ChartConfig } from '../types/chart.types'; import type { ChartAction } from '../types/chart.types'; import type { Store } from '@composable-svelte/core'; type $$ComponentProps = { store: Store, ChartAction>; config: ChartConfig & { type?: 'scatter' | 'line' | 'bar' | 'area' | 'histogram'; }; plotBuilder: (state: ChartState, config: any) => any; enableZoom?: boolean; enableBrush?: boolean; }; declare const ChartPrimitive: import("svelte").Component<$$ComponentProps, {}, "">; type ChartPrimitive = ReturnType; export default ChartPrimitive; //# sourceMappingURL=ChartPrimitive.svelte.d.ts.map