import type { UseInputProps, UseInputReturn, UseInputEmit } from './interface'; export * from './interface.d'; /** * 文本框输入的方法 * * 可处理文本框输入和清空 * * @author Tyh2001 * @param { Object } prop 组件的 props 参数 * @param { Function } emit 回调参数 * @returns { Object } */ export declare const useInput: (prop: UseInputProps, emit: UseInputEmit) => UseInputReturn;