import { Dayjs } from 'dayjs'; import { Moment } from 'moment'; import { default as React } from 'react'; import { DateToFormatOptions } from '../types'; export type FormattedDateProps = { value: Date | Moment | Dayjs; options?: DateToFormatOptions; }; export declare const FormattedDate: React.FC;