/** Milliseconds in a second (每秒的毫秒数) */
export declare const MS_IN_SECOND = 1000;
/** Milliseconds in a minute (每分钟的毫秒数) */
export declare const MS_IN_MINUTE = 60000;
/** Milliseconds in an hour (每小时的毫秒数) */
export declare const MS_IN_HOUR = 3600000;
/** Milliseconds in a day (每天的毫秒数) */
export declare const MS_IN_DAY = 86400000;
/** range of units (单位范围) */
export declare const rangeOfUnits: string[];
