/** * Convert bytes to KB, MB, GB, TB * @method * @param {number} bytes amount of bytes * @param {number} [decimals = 1] amount of digits after decimal point * @param {number} [maxValue = 1TB] maximum value * @returns {string} Formatted string representing converted bytes */ export declare const bytesToSize: (bytes: number, decimals?: number, maxValue?: number) => string;