export interface ByteOptions {
    decimals?: number;
}
export declare function formatBytes(bytes: number, options?: ByteOptions): string;
