import type { AriaRole, Dispatch, ReactNode, SetStateAction } from 'react'; interface ChartSVGProps { children: ReactNode; height: number; width: number; setRef?: Dispatch>; role?: AriaRole; emptyStateText?: string; emptyState?: boolean; } export declare function ChartSVG({ width, setRef, role, height, emptyStateText, emptyState, children, }: ChartSVGProps): JSX.Element; export {}; //# sourceMappingURL=ChartSVG.d.ts.map