import type { ChartViewConfig } from "./SvGrid.types"; type $$ComponentProps = { data: ReadonlyArray>; /** Present for parity with board/scheduler renderers; unused here. */ columns?: unknown; getRowId?: unknown; chart: ChartViewConfig; }; declare const SvGridChartView: import("svelte").Component<$$ComponentProps, {}, "">; type SvGridChartView = ReturnType; export default SvGridChartView;