/** * Date/Time Utilities * Provides consistent timestamp and date creation patterns */ /** * Creates a standardized timestamp for current time * @returns Current timestamp as Date object */ export declare function createTimestamp(): Date; /** * Creates a standardized ISO string timestamp * @returns Current time as ISO string */ export declare function createIsoTimestamp(): string; /** * Creates a timestamp string for logging * @returns Timestamp string in ISO format */ export declare function createLogTimestamp(): string; /** * Gets current Unix timestamp in milliseconds * @returns Current Unix timestamp */ export declare function getCurrentTimeMs(): number; /** * Creates a future timestamp by adding milliseconds * @param msToAdd - Milliseconds to add to current time * @returns Future timestamp */ export declare function createFutureTimestamp(msToAdd: number): Date; /** * Creates a timestamp for mock entities with consistent pattern * @param offset - Optional time offset in milliseconds (default: 0) * @returns Mock timestamp */ export declare function createMockTimestamp(offset?: number): Date; //# sourceMappingURL=timeUtils.d.ts.map