/** * Converts a size in bytes to a human-readable string with three significant digits. * The size is scaled down to the appropriate unit (bytes, KB, MB, GB, TB) and rounded * to two decimal places. * * @param size - The size in bytes to be converted. * @returns A string representing the size in the most appropriate unit, rounded to two decimal places. * * @example * ```typescript * const result = bytesToThreeSigDigits(2048); * console.log(result); // "2.00KB" * ``` */ declare const bytesToThreeSigDigits: (size: number) => string; export default bytesToThreeSigDigits;