import type { VNode, VNodeChild } from 'vue'; import type { ChartValue } from '@tanstack/charts'; import type { ChartProps, ChartTooltipBodySlotContext } from './types.js'; interface ChartComponent { (props: ChartProps): VNode & { __ctx?: { slots: { tooltipBody?: (context: ChartTooltipBodySlotContext) => VNodeChild; }; }; }; } export declare const Chart: ChartComponent; export {};