import { Emits } from './types';
/**
 * 输入框
 */
export declare const useTextarea: (emit: Emits) => {
    onFocus: (e: FocusEvent) => void;
    onBlur: (e: FocusEvent) => void;
    onChange: (e: Event) => void;
    onInput: (e: Event) => void;
};
