export declare class MyDateConverter { private MONTHNAMES; private MONTHNAMES_LOOKUP; /** * @var {Array} Abbreviated names for the months of the year */ private ABBR_MONTHNAMES; /** * @var {Array} Names for the days of the week from Sunday to Saturday */ private DAYNAMES; private DAYNAMES_LOOKUP; /** * @var {Array} Abbreviated names for the days of the week from Sunday to Saturday */ private ABBR_DAYNAMES; regexes: { YEAR: string; MONTH: string; MONTH2: string; MONTHNAME: string; DAYNAME: string; DAY: string; DAY2: string; TIMEZONE: string; H24: string; MIN: string; SEC: string; MS: string; H12: string; AMPM: string; UNIT: string; }; patterns: (string | RegExp | ((m: any) => any))[][]; makePattern(code: any): RegExp; getMonthByName(monthname: any): any; getWeekdayByName(dayname: any): any; private zeroPad; create(date: any): number | Date; }