/** * Shared formatting utilities. */ /** * Format bytes into a human-readable string. */ export declare function formatBytes(bytes: number): string; /** * Format a date for display. */ export declare function formatDate(date: Date | null): string;