import { ICountry } from './country_data';
interface UseFormattedNumberProps {
    autoFormat?: boolean;
    disableCountryCode?: boolean;
    enableLongNumbers?: boolean;
    innerValue: string;
    selectedCountryDialCode: string;
    selectedCountryFormat?: string;
    lastSelectedCountry: React.MutableRefObject<ICountry>;
}
declare const useFormattedNumber: ({ autoFormat, disableCountryCode, enableLongNumbers, innerValue, selectedCountryDialCode, selectedCountryFormat, lastSelectedCountry, }: UseFormattedNumberProps) => string;
export default useFormattedNumber;
