interface FormatBytesOptions {
    numberOfDecimals: number;
}
declare const formatBytes: (bytes: number, options?: Partial<FormatBytesOptions>) => string;

export { formatBytes };
