import { type Dayjs } from 'dayjs'; import { type Moment } from 'moment'; import { type 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;