import { EpVNodeProp } from '@yanzhen-libs/utils-vue';
import { ComponentPublicInstance, SetupContext } from 'vue';
import { TextareaEmits, TextareaProps } from './textarea';
export declare function useTextarea(props: Partial<TextareaProps>, emit: SetupContext<TextareaEmits>['emit']): readonly [{
    readonly _ref: import('vue').Ref<ComponentPublicInstance, ComponentPublicInstance>;
    readonly proxyProps: import('vue').ComputedRef<Partial<Partial<TextareaProps>>>;
}, (props: EpVNodeProp<TextareaProps>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
    [key: string]: any;
}>];
