export declare const format: { date: string; dateTime: string; }; export declare const formatDate: (timestamp: string | Date) => string; export declare const formatDateFromObject: (obj: Date) => string; export declare const formatTime: (timestamp: string | Date) => string; export declare const parseDate: (date: Date) => { day: number; month: number; year: number; }; export declare const addYears: (date: Date, n?: number) => Date; export declare const yearsList: (n?: number, date?: Date) => number[]; export declare const addMonths: (date: Date, n?: number) => Date; export declare const addDays: (date: Date, n?: number) => Date; export declare const addMs: (date: Date, n?: number) => Date; export declare const findNumberOfDaysInMonth: (month: number, year?: number) => number; export declare const countDaysDiffBtnDates: (d1: Date, d2: Date) => number; export declare const dateToISO: (d: Date | string | undefined) => string | undefined; export declare const monthNames: string[];