import { DateTime } from 'luxon'; import { FormatDateFromApiOptions, FormatDateOptions, FormatDateToApiOptions, FormatRelativeTimeOptions } from '../../types/date'; export declare const formatDate: (date?: string | DateTime | null, { toFormat, fromFormat }?: FormatDateOptions) => string; export declare const formatDateFromApi: (date?: string | null, { toFormat }?: FormatDateFromApiOptions) => string; export declare const formatDateToApi: (date?: string | DateTime | null, { fromFormat }?: FormatDateToApiOptions) => string; export declare const formatRelativeTime: (date?: string | null, { reference, toFormat }?: FormatRelativeTimeOptions) => string; export declare const isToday: (date: string) => boolean; export declare const isYesterday: (date: string) => boolean; export declare const datesDontHaveSameDay: (date1: string, date2: string) => boolean; export declare const formatDateWithDiffNow: (date?: string | null) => string; //# sourceMappingURL=index.d.ts.map