import type { CSSProperties, ReactNode } from 'react'; interface ChartDivProps { height: number | string; width: number | string; style?: CSSProperties; children: ReactNode; } export declare function ChartDiv({ children, height, width, style }: ChartDivProps): JSX.Element; export {}; //# sourceMappingURL=ChartDiv.d.ts.map