import { MazInputProps } from '../MazInput.vue';
type PhoneInputProps = Omit<MazInputProps, 'modelValue'> & {
    id: string;
    locales: {
        placeholder: string;
        example: string | undefined;
    };
    example: boolean;
    hasRadius: boolean;
    autoFormat: 'blur' | 'typing' | 'disabled' | false;
};
type __VLS_Props = PhoneInputProps;
type __VLS_PublicProps = {
    modelValue?: string | undefined | null;
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
    /**
     * Focus the input
     * @description This is used to focus the input
     */
    focus: () => void;
}, {}, {}, {}, 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, {
    input: {} | null;
}, any>;
export default _default;
