import { VPhoneInputComposable, VPhoneInputComposableOptions, VPhoneInputCountryObject } from '../types';
/**
 * Composable to create a custom phone input with two fields: one for country
 * selection and another for phone number.
 *
 * @param options
 */
export default function usePhoneInput<Country extends VPhoneInputCountryObject>(options: VPhoneInputComposableOptions<Country>): VPhoneInputComposable<Country>;
