/** * Format file size in human-readable format */ export declare const formatFileSize: (bytes: number) => string; /** * Format date in a readable format */ export declare const formatDate: (dateString: string) => string; /** * Format relative time */ export declare const formatRelativeTime: (dateString: string) => string;