export declare class DateTime { months: any[]; days: number[]; firstDayOfWeek: number; daysOfWeek: any[]; localizedDaysOfWeek: any[]; static momentFormatDate(d: Date, dateFormat: string): string; static momentParse(dateStr: string, dateFormat: string): Date; static formatDate(d: Date, dateOnly: boolean): string; static parse(dateStr: string): Date; static removeTimezone(dateStr: string): string; static addDSTOffset(dateStr: string): string; static getDateFromString(dateStr: string): Date; constructor(); initialize(): void; getMonthData(year: number, month: number): any; }