import { DefineComponent } from 'vue'; // eslint-disable-next-line @typescript-eslint/ban-types export type InputSearchProps = {}; export type InputSearchEmits = { /** * Emits when the Enter key is pressed. */ search: [payload?: string]; }; declare const InputSearch: DefineComponent; export default InputSearch;