/** * List of metric prefixes, where the index is its base-1000 * or base-1024 offset. */ export declare const METRIC_PREFIXES: readonly string[]; /** * Pretty-print a byte value with low enough detail to be quickly * human-readable. */ export declare const formatBytes: (bytes: number | bigint, base?: 1024 | 1000, precision?: number) => string; //# sourceMappingURL=format-bytes.d.ts.map