//#region packages/normalization-core/src/format.d.ts type ByteSizeUnit = "byte" | "kilo" | "mega" | "giga" | "tera"; type ByteSizeStyle = "iec" | "legacy-binary"; type ByteSizeFormatOptions = { style: ByteSizeStyle; maxUnit: ByteSizeUnit; separator: "" | " "; fractionDigits: number | ((value: number, unit: ByteSizeUnit) => number | null); floorUnits?: readonly ByteSizeUnit[]; }; /** Formats a byte count with caller-explicit scale, labels, precision, and unit cap. */ declare function formatByteSize(bytes: number, options: ByteSizeFormatOptions): string; //#endregion export { formatByteSize as t };