import { CSSProperties } from 'react'; import { EChartsOption } from 'echarts'; import { ChartMedia, ChartMode } from '../tokens/chart'; import { ChartPoint } from './types'; export interface ChartSurfaceProps { option: EChartsOption; mode?: ChartMode; media?: ChartMedia; height?: number | string; style?: CSSProperties; onPointClick?: (point: ChartPoint) => void; /** Accessible name for the chart region. */ label?: string; } export declare function ChartSurface({ option, mode, media, height, style, onPointClick, label, }: ChartSurfaceProps): import("react").JSX.Element;