/** * Converts bytes to human readable format with appropriate units * @param bytes - Size in bytes * @param decimals - Number of decimal places (default: 2) * @returns Formatted string with appropriate unit (B, KB, MB, GB) */ export declare const formatBytes: (bytes: number, decimals?: number) => string;