import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
export interface FormatNumberProps {
    /**
     * The byte size to format
     */
    value: number;
    compactDisplay?: 'short' | 'long' | undefined;
    notation?: 'standard' | 'scientific' | 'engineering' | 'compact' | undefined;
    signDisplay?: 'auto' | 'never' | 'always' | 'exceptZero' | undefined;
    unit?: string | undefined;
    unitDisplay?: 'short' | 'long' | 'narrow' | undefined;
    currencyDisplay?: string | undefined;
    currencySign?: string | undefined;
}
declare const _default: DefineComponent<FormatNumberProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormatNumberProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;
