export declare const localTimezone: string; export declare const timeToDate: (time: string, tz?: string, baseDate?: Date) => Date; export declare const dateToTime: (d: Date, tz?: string, format?: string) => string; export declare const consumeMinMax: (min: Date | string, max: Date | string, tz?: string) => { min: string; max: string; }; /** * Prioity: * 1. min, if min is Date, if not... * 2. max, if max is Date, if not... * 3. value, if defined, if not... * 4. today @ timezone */ export declare const getReturnDate: (min: Date | string, max: Date | string, value?: Date, tz?: string) => Date;