export declare const NOW: () => Date;
export declare const ADD_DAYS: (date: Date | string, days: number) => Date;
export declare const FORMAT_SHORT: (date: Date | string, locale?: string) => string;
export declare const FORMAT_MEDIUM: (date: Date | string, locale?: string) => string;
export declare const FORMAT_LONG: (date: Date | string, locale?: string) => string;
export declare const FORMAT_FULL: (date: Date | string, locale?: string) => string;
export declare const FORMAT_TIME_SHORT: (date: Date | string, locale?: string) => string;
export declare const FORMAT_TIME_MEDIUM: (date: Date | string, locale?: string) => string;
export declare const FORMAT_TIME_LONG: (date: Date | string, locale?: string) => string;
export declare const FORMAT_DATE_TIME: (date: Date | string, dateStyle?: "short" | "medium" | "long" | "full", timeStyle?: "short" | "medium" | "long" | "full", locale?: string) => string;
export declare const ADD_MONTHS: (date: Date | string, months: number) => Date;
export declare const ADD_YEARS: (date: Date | string, years: number) => Date;
export declare const ADD_HOURS: (date: Date | string, hours: number) => Date;
export declare const ADD_MINUTES: (date: Date | string, minutes: number) => Date;
export declare const SUBTRACT_DAYS: (date: Date | string, days: number) => Date;
export declare const SUBTRACT_MONTHS: (date: Date | string, months: number) => Date;
export declare const SUBTRACT_YEARS: (date: Date | string, years: number) => Date;
export declare const DIFF_DAYS: (date1: Date | string, date2: Date | string) => number;
export declare const DIFF_HOURS: (date1: Date | string, date2: Date | string) => number;
export declare const DIFF_MINUTES: (date1: Date | string, date2: Date | string) => number;
export declare const START_OF_DAY: (date: Date | string) => Date;
export declare const END_OF_DAY: (date: Date | string) => Date;
export declare const START_OF_WEEK: (date: Date | string) => Date;
export declare const END_OF_WEEK: (date: Date | string) => Date;
export declare const START_OF_MONTH: (date: Date | string) => Date;
export declare const END_OF_MONTH: (date: Date | string) => Date;
export declare const START_OF_YEAR: (date: Date | string) => Date;
export declare const END_OF_YEAR: (date: Date | string) => Date;
export declare const IS_WEEKEND: (date: Date | string) => boolean;
export declare const IS_WEEKDAY: (date: Date | string) => boolean;
export declare const IS_LEAP_YEAR: (year: number) => boolean;
export declare const DAYS_IN_MONTH: (year: number, month: number) => number;
export declare const DAY_OF_YEAR: (date: Date | string) => number;
export declare const WEEK_OF_YEAR: (date: Date | string) => number;
export declare const IS_SAME_DAY: (date1: Date | string, date2: Date | string) => boolean;
export declare const IS_TODAY: (date: Date | string) => boolean;
export declare const IS_TOMORROW: (date: Date | string) => boolean;
export declare const IS_YESTERDAY: (date: Date | string) => boolean;
export declare const PARSE_ISO_DATE: (dateString: string) => Date;
export declare const TO_ISO_DATE: (date: Date | string) => string;
export declare const GET_AGE: (birthDate: Date | string) => number;
//# sourceMappingURL=date.d.ts.map