import { DefineComponent } from 'vue'; export type TreeSearchInputProps = { modelValue?: string; }; export type TreeSearchInputEmits = { 'update:modelValue': [payload: string]; }; declare const TreeSearchInput: DefineComponent< TreeSearchInputProps, TreeSearchInputEmits >; export default TreeSearchInput;