import dayjs, { type ConfigType } from 'dayjs'; /** * The date format supported by the Search API. */ export declare const API_DATE_FORMAT = "YYYY/MM/DD@HH:mm:ss"; export type AbsoluteDate = string | number | Date; export declare function parseDate(date: ConfigType, format?: string): dayjs.Dayjs; export declare function formatDateForSearchApi(date: dayjs.Dayjs): string; export declare function isSearchApiDate(date: string): boolean; export declare function validateAbsoluteDate(date: AbsoluteDate, dateFormat?: string): void; export declare function assertDateAboveAPIMinimum(date: dayjs.Dayjs): void;