/** * Converts the given file size in bytes to a human readable string. * * @example 1100000 -> "1.1 MB" * @param fileSizeInBytes the size of the file in bytes to be converted to a readable string * @returns the human-readable file size string */ export declare const getReadableFileSize: (fileSizeInBytes: number) => string; /** * Counterpart to getReadableFileSize * Converts the given human readable file size string to the corresponding file size in bytes. * @example "1.1 MB" -> 1100000 * @param readableFileSize the human readable file size string to be converted to bytes * @returns the file size in bytes */ export declare const getByteFileSize: (readableFileSize: string) => number;