declare enum Time { Nanosecond = 0.000001, Microsecond = 0.001, Millisecond = 1, Second = 1000, Minute = 60000, Hour = 3600000, Day = 86400000, Week = 604800000, Month = 2628000000, Year = 31536000000 } declare const days: string[]; declare const months: string[]; declare const tokens: Map; export { Time, days, months, tokens };