import type { CountryItem } from "../types"; interface UsePhoneCountryInputParams { value: string; onChangePhone: (value: string) => void; } interface UsePhoneCountryInputResult { selectedCountry: CountryItem; inputDigits: string; isCountryModalVisible: boolean; setIsCountryModalVisible: (value: boolean) => void; handlePhoneChange: (input: string) => void; handleSelectCountry: (country: CountryItem) => void; } export declare const usePhoneCountryInput: ({ value, onChangePhone }: UsePhoneCountryInputParams) => UsePhoneCountryInputResult; export {}; //# sourceMappingURL=usePhoneCountryInput.d.ts.map