import { type SupportedLocale } from '../locales/index.js';
export interface BytesOptions {
    binary?: boolean;
    decimals?: number;
    stripZeros?: boolean;
    locale?: SupportedLocale;
    longFormat?: boolean;
}
export declare function formatBytes(bytes: number, options?: BytesOptions): string;
