import { Sizes } from '../constants'; interface Props { autofocus?: boolean; defaultCountry?: string; disabled?: boolean; errorMessage?: string; help?: string; hideSearch?: boolean; isInvalid?: boolean; label?: string; name?: string; placeholder?: string; required?: boolean; size?: Sizes; tooltip?: string; } type __VLS_Props = Props; type PhoneObject = { country: string; countryCode: string; formatted: string; nationalNumber: string; possible: boolean; valid: boolean; }; type __VLS_ModelProps = { modelValue?: string; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string | undefined) => any; } & { countryChanged: (countryCode: string) => any; validate: (phoneObject: PhoneObject) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined; onCountryChanged?: ((countryCode: string) => any) | undefined; onValidate?: ((phoneObject: PhoneObject) => any) | undefined; }>, { label: string; size: Sizes; required: boolean; name: string; disabled: boolean; isInvalid: boolean; tooltip: string; errorMessage: string; help: string; placeholder: string; autofocus: boolean; defaultCountry: string; hideSearch: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default; //# sourceMappingURL=CpTelInput.vue.d.ts.map