import { Dayjs } from 'dayjs'; import { Moment } from 'moment'; import { DateToFormatOptions } from '../types'; export type FormattedRelativeDateTimeProps = { value: Date | Moment | Dayjs; withoutSuffix?: boolean; options?: DateToFormatOptions; }; export declare const FormattedRelativeDateTimeTo: ({ value, withoutSuffix, options, }: FormattedRelativeDateTimeProps) => JSX.Element; export declare const FormattedRelativeDateTimeFrom: ({ value, withoutSuffix, options, }: FormattedRelativeDateTimeProps) => JSX.Element;