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