///
import { CountryCode } from 'libphonenumber-js';
import { PhoneNumberProps, PhoneNumberRef } from './types';
export declare const usePhoneNumberField: (props: PhoneNumberProps, ref: React.ForwardedRef) => {
containerRef: import("react").MutableRefObject;
field: {
value: any;
onBlur: (...args: unknown[]) => void;
onChange: (...args: any[]) => void;
disabled?: boolean;
name: any;
ref: import("react-hook-form").RefCallBack;
};
inputMode: import("./phoneInput").PhoneInputMode;
inputValue: string;
selectedCountry: CountryCode;
handleChange: (e: React.ChangeEvent) => void;
handleFocus: () => void;
handleBlur: (e: React.FocusEvent) => void;
handleKeyDown: (e: React.KeyboardEvent) => void;
selectCountry: (nextCountry: CountryCode) => void;
};
//# sourceMappingURL=usePhoneNumberField.d.ts.map