import { TextareaHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, AllowedComponentProps, ComponentCustomProps, VNodeProps } from 'vue';
import { PolymorphicProps } from '../factory';
export interface FieldTextareaBaseProps extends PolymorphicProps {
/**
* Whether the textarea should autoresize
* @default false
*/
autoresize?: boolean;
}
export interface FieldTextareaProps extends FieldTextareaBaseProps,
/**
* @vue-ignore
*/
Omit {
modelValue?: TextareaHTMLAttributes['value'];
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent void;
}, string, PublicProps, Readonly & Readonly<{
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
textareaRef: {
$props: AllowedComponentProps & ComponentCustomProps & VNodeProps & {
[x: string]: unknown;
readonly [x: number]: string;
} & {
[Symbol.iterator]?: StringIterator | undefined;
} & TextareaHTMLAttributes & Record & PolymorphicProps;
} | null;
}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots = T & {
new (): {
$slots: S;
};
};