import * as React from 'react'; import type { AnyObject } from '../../../_util/type'; import type { FilterSearchType, TableLocale } from '../../interface'; interface FilterSearchProps { value: string; onChange: (e: React.ChangeEvent) => void; filterSearch: FilterSearchType; tablePrefixCls: string; locale: TableLocale; } declare const FilterSearch: (props: FilterSearchProps) => React.JSX.Element | null; export default FilterSearch;