import { InputHTMLAttributes, Plugin } from 'vue'; export interface DropdownOptions { showFlags?: boolean; disabled?: boolean; tabindex?: number; showDialCodeInSelection?: boolean; showDialCodeInList?: boolean; } declare type Booleanish = boolean | 'true' | 'false'; export interface InputOptions extends Partial { type?: string; autocomplete?: string; autofocus?: boolean; styleClasses?: string; id?: string; maxlength?: number; name?: string; readonly?: Booleanish; required?: Booleanish; tabindex?: string; showDialCode?: boolean; placeholder?: string; } export interface CustomOptions { dropdownOptions?: DropdownOptions; inputOptions?: InputOptions; } declare const Vue3TelInput: Plugin; export default Vue3TelInput;