maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
20 lines (19 loc) • 912 B
TypeScript
import type { Props } from '../MazInput.vue';
import type { Translations } from '../MazPhoneNumberInput.vue';
type PhoneInputProps = Omit<Props, 'modelValue'> & {
id: string;
locales: Translations;
noExample: boolean;
hasRadius: boolean;
autoFormat: boolean;
};
type __VLS_Props = PhoneInputProps;
type __VLS_PublicProps = {
modelValue?: string | undefined | null;
} & __VLS_Props;
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string | null | undefined) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;