/** The number of milliseconds */ export declare const MILLISECONDS = 1; /** * The number of milliseconds in a second. * * @example * ```ts * import { SECOND } from "@chzky/std"; * * SECOND; // 1_000 * ``` */ export declare const SECOND: number; /** * The number of milliseconds in a minute. * * @example * ```ts * import { MINUTE } from "@chzky/std"; * * MINUTE; // 60_000 * ``` */ export declare const MINUTE: number; /** * The number of milliseconds in an hour. * * @example * ```ts * import { HOUR } from "@chzky/std"; * * HOUR; // 3_600_000 * ``` */ export declare const HOUR: number; /** * The number of milliseconds in a day. * * @example * ```ts * import { DAY } from "@chzky/std"; * * DAY; // 86_400_000 * ``` */ export declare const DAY: number; /** * The number of milliseconds in a week. * * @example * ```ts * import { WEEK } from "@chzky/std"; * * WEEK; // 604_800_000 * ``` */ export declare const WEEK: number; /** * The number of milliseconds in a year. * * @example * ```ts * import { YEAR } from "@chzky/std"; * * YEAR; // 31_536_000_000 * ``` */ export declare const YEAR: number; //# sourceMappingURL=constant.d.ts.map