import { TextareaHTMLAttributes } from 'vue'; import { TextareaColor } from './constants'; declare let __VLS_typeProps: { color?: TextareaColor; cols?: TextareaHTMLAttributes['cols']; disabled?: TextareaHTMLAttributes['disabled']; helper?: string; hideLabel?: boolean; id?: TextareaHTMLAttributes['id']; label?: string; labelProps?: Record; maxlength?: TextareaHTMLAttributes['maxlength']; minlength?: TextareaHTMLAttributes['minlength']; name?: TextareaHTMLAttributes['name']; placeholder?: TextareaHTMLAttributes['placeholder']; readonly?: TextareaHTMLAttributes['readonly']; required?: TextareaHTMLAttributes['required']; resizeable?: boolean; rows?: TextareaHTMLAttributes['rows']; spellcheck?: TextareaHTMLAttributes['spellcheck']; textareaProps?: TextareaHTMLAttributes; tooltip?: string; }; type __VLS_PublicProps = { modelValue?: string; } & typeof __VLS_typeProps; declare const _default: __VLS_WithTemplateSlots, { color: "neutral"; cols: undefined; disabled: boolean; helper: undefined; hideLabel: boolean; id: undefined; label: undefined; labelProps: () => {}; maxlength: undefined; minlength: undefined; name: undefined; placeholder: undefined; readonly: boolean; required: boolean; resizeable: boolean; rows: undefined; spellcheck: undefined; textareaProps: () => {}; tooltip: undefined; }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (modelValue: string) => void; input: (value: Event) => void; }, string, import('vue').PublicProps, Readonly, { color: "neutral"; cols: undefined; disabled: boolean; helper: undefined; hideLabel: boolean; id: undefined; label: undefined; labelProps: () => {}; maxlength: undefined; minlength: undefined; name: undefined; placeholder: undefined; readonly: boolean; required: boolean; resizeable: boolean; rows: undefined; spellcheck: undefined; textareaProps: () => {}; tooltip: undefined; }>>> & { onInput?: ((value: Event) => any) | undefined; "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined; }, { name: string; required: boolean | "true" | "false"; readonly: boolean | "true" | "false"; label: string; id: string; tooltip: string; disabled: boolean | "true" | "false"; hideLabel: boolean; placeholder: string; spellcheck: boolean | "true" | "false"; color: TextareaColor; rows: string | number; helper: string; maxlength: string | number; minlength: string | number; cols: string | number; labelProps: Record; resizeable: boolean; textareaProps: TextareaHTMLAttributes; }, {}>, { helper?(_: {}): any; }>; export default _default; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; };