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