export declare class MyDate { static GetDateTimeNowInUTC(UserTimeZone: any): Date; static GetCurrentYear(UserTimeZone: any): number; static ConvertUTCDateToReadable(UTCDateTime: any): string | null; static ConvertUTCDateToReadableExDate(UTCDateTime: any): string | null; static ConvertUTCDateToReadableExDateTxt(UTCDateTime: any): string | null; static ConvertUTCDateTimeToReadable(UTCDateTime: any, UserTimeZone: any): string | null; static GetMonthName(MonthNumber: number, UserTimeZone: any): any; static GetDaysDiffBetween(startutcdate: any, endutcdate: any): number; static GetWeekDateAndTime(UTCDateTime: any, UserTimeZone: any): string | null; static GetWeekAndDate(UTCDateTime: any, UserTimeZone: any): string | null; }