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