import type { ChartValue, DomChartDefinition } from '@tanstack/charts'; import type { RendererChartCommonProps } from './renderer-types.js'; export type CanvasChartCommonProps = Omit, 'renderer'>; export type CanvasChartProps = CanvasChartCommonProps & { definition: DomChartDefinition; };