/** * Formats a timestamp (ms or ISO string) relative to now. */ export declare function formatRelativeTime(ms: number | string): string; /** * Formats bytes into a human-readable string. */ export declare function formatBytes(bytes: number): string;