import type { FC, HTMLAttributes, Ref } from 'react'; export interface ChartTitleProps extends HTMLAttributes { ref?: Ref; } export declare const ChartTitle: FC;