import dayjs, { Dayjs } from "dayjs"; import { type Duration } from "dayjs/plugin/duration"; export declare const getUpdatedMinMaxValue: (previousValue?: Date | null, newValue?: Date | null) => Date | null | undefined; export interface CalendarCell { text: string; value: Dayjs; } export declare const getCalendarCells: (date: Dayjs) => CalendarCell[]; export declare const resolvedValue: (value?: Date | null, min?: Date | null, max?: Date | null) => dayjs.Dayjs; export declare const rectifyDate: (value: Dayjs, min?: Date | null, max?: Date | null) => dayjs.Dayjs; export declare const getDurationFromNowToUNIXTimestamp: (to: number) => Duration; //# sourceMappingURL=date.d.ts.map