import { AnyObject } from "../../../_util/type.js"; import { FilterSearchType, TableLocale } from "../../interface.js"; //#region src/table/hooks/useFilter/FilterSearch.d.ts interface FilterSearchProps { value: string; onChange: (e: Event) => void; filterSearch: FilterSearchType; tablePrefixCls: string; locale: TableLocale; } declare function FilterSearch(props: FilterSearchProps): import("vue/jsx-runtime").JSX.Element | null; //#endregion export { FilterSearch as default };