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