import { default as React } from 'react'; type TwoLineDateLabelProps = { x: number; y: number; payload: { value: string | number; }; xTickFormat?: boolean; }; declare const TwoLineDateLabel: ({ x, y, payload, xTickFormat, }: TwoLineDateLabelProps) => React.JSX.Element; export default TwoLineDateLabel;