/** * Formats the given size in bytes into a human-readable format. * @param bytes - The size in bytes to be formatted. * @returns A string representing the formatted size. */ export declare const formatBytes: (bytes: number) => string;