/**
* Format bytes as a human readable string
*
* @param bytes Number of bytes to format
* @param decimals Number of decimal places to show (default 2)
* @returns Formatted string with appropriate unit suffix
*/exportdeclarefunctionformatBytes(bytes: number, decimals?: number): string;