/** * @fileoverview Timestamp utilities for Advanced Logger */ /** * Formats the timestamp using modern Date API */ export declare function formatTimestamp(): string; /** * Parse relative time strings like "2h", "30m", "1d" into milliseconds */ export declare function parseRelativeTime(timeStr: string): number; /** * Parse time input which can be Date, ISO string, or relative time */ export declare function parseTimeInput(input: Date | string | number): Date; /** * Format timestamp for display in different contexts */ export declare function formatDisplayTime(date: Date, format?: 'short' | 'full' | 'time-only'): string; //# sourceMappingURL=timestamps.d.ts.map