/** * Formats a byte value into a human-readable string with appropriate units. * Converts bytes to B, KB, MB, or GB based on the size with up to 3 decimal places. * * @param bytes - The number of bytes to format * @returns A formatted string with the appropriate unit (B, KB, MB, or GB) * * @example * ```typescript * sizeFormat(512) // "512 B" * sizeFormat(1536) // "1.5 KB" * sizeFormat(2097152) // "2 MB" * sizeFormat(1073741824) // "1 GB" * ``` */ export declare function sizeFormat(bytes: number): string;