import { RoundMethods } from '../commonTypes'; declare type ConvertBytesProps = { /** Number of decimal places */ decimals?: number; /** Size rounding type */ roundType?: RoundMethods; /** Size in bytes */ size?: number; }; /** * Convert size in bytes to size with other units of measurement as string * @param {ConvertBytesProps} props - convertBytes props * * @returns {string | undefined} Size with other units of measurement as string */ export declare const convertBytes: ({ size, decimals, roundType, }: ConvertBytesProps) => string | undefined; export {};