import type { FC, HTMLAttributes, Ref } from 'react'; import { type TestableProps } from '../../../utils/testId'; export interface ChartProps extends HTMLAttributes, TestableProps { ref?: Ref; } export declare const Chart: FC;