declare const units: readonly ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"]; export type Unit = (typeof units)[number]; export declare function prettierBytes(input: number, unit?: Unit): string; export {};