import type { JSX } from 'preact';
import type { ChartValue } from '@tanstack/charts';
import type { ChartProps } from './types.js';
export declare function Chart<TDatum, TXValue extends ChartValue = ChartValue, TYValue extends ChartValue = ChartValue>(props: ChartProps<TDatum, TXValue, TYValue>): JSX.Element;
