import { Emits, USEBtns } from './types';
/**
 * 搜索框
 */
export declare const useSearch: (emit: Emits) => {
    onKeypress: (e: KeyboardEvent) => void;
    onFocus: (e: FocusEvent) => void;
    onBlur: (e: FocusEvent) => void;
    onInput: (e: Event) => void;
    onChange: (e: Event) => void;
};
/**
 * 操作按钮
 */
export declare const useBtns: ({ emit, inputVal }: USEBtns.Option) => {
    onClean: () => void;
    handleBtn: () => void;
};
