/** * Converts a string, number, or Date object to a Unix timestamp (seconds since the Unix Epoch). * * @param value The string to convert. * @returns The Unix timestamp. */ export declare function toSeconds(value: string | number | Date): number; /** * Converts a Unix timestamp to a Date object. * * @param timestamp The Unix timestamp to convert. * @returns The Date object. */ export declare function secondsToDate(timestamp: number): Date; /** * Gets the current Unix timestamp (seconds since the Unix Epoch). * * @returns The current Unix timestamp. */ export declare function now(): number; //# sourceMappingURL=date.d.ts.map