import { UnitGroupConfig, UnitConfig } from './types'; type BytesUnit = 'bytes' | 'decbytes'; export type BytesFormatOptions = { unit?: BytesUnit; decimalPlaces?: number; shortValues?: boolean; }; export declare const BYTES_GROUP_CONFIG: UnitGroupConfig; export declare const BYTES_UNIT_CONFIG: Readonly>; export declare function formatBytes(bytes: number, { unit, shortValues, decimalPlaces }: BytesFormatOptions): string; export {}; //# sourceMappingURL=bytes.d.ts.map