/** * Convert bytes to largest unit, with SI prefix unit (1000), eg: 211.293GB * @public */ export declare function humanSizeSI(bytes: number, fixed?: number): string; /** * Convert bytes to largest unit, with binary prefix unit (1024), eg: 211.293GiB * @public */ export declare function humanSize(bytes: number, fixed?: number): string; /** @deprecated */ export declare function humanSpeed(bps: number): string; //# sourceMappingURL=human-bytes.d.ts.map