import { Component } from 'vue'; import { Caption } from '../../models'; export interface Props { options: string[] | { label: string; value: string; icon?: Component | string; }[]; modelValue?: string; label?: string; required?: boolean; optional?: boolean; disabled?: boolean; helperText?: string; placeholder?: string; captions?: string[] | Caption[]; errors?: string[] | Caption[]; open?: boolean; } type __VLS_Props = Props; type __VLS_PublicProps = { 'modelValue'?: string; } & __VLS_Props; declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { open: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default;