import { TdTextareaProps } from './type'; import { PropType } from 'vue'; declare const _default: { allowInputOverMax: BooleanConstructor; autofocus: BooleanConstructor; autosize: { type: PropType; default: TdTextareaProps['autosize']; }; bordered: BooleanConstructor; cursorColor: { type: StringConstructor; default: string; }; disabled: { type: BooleanConstructor; default: any; }; indicator: BooleanConstructor; label: { type: PropType; }; layout: { type: PropType; default: TdTextareaProps['layout']; validator(val: TdTextareaProps['layout']): boolean; }; maxcharacter: { type: NumberConstructor; }; maxlength: { type: PropType; }; name: { type: StringConstructor; default: string; }; placeholder: { type: StringConstructor; default: any; }; readonly: { type: BooleanConstructor; default: any; }; value: { type: PropType; default: TdTextareaProps['value']; }; modelValue: { type: PropType; default: TdTextareaProps['value']; }; defaultValue: { type: PropType; }; onBlur: PropType; onChange: PropType; onFocus: PropType; }; export default _default;