import { BinaryPrefixedSize } from '../utils/numbers.js'; /** * Small composable for formatting file sizes with i18n. */ export declare const useFileSize: () => { /** * Formats the given file size to a human readable string. */ formatFileSize: import('vue').ComputedRef<(size: number | BinaryPrefixedSize) => string>; };