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