import * as React from 'react'; import { ColumnType, Key, TableLocale, GetPopupContainer } from '../../interface'; import { FilterState } from '.'; export interface FilterDropdownProps { tablePrefixCls: string; prefixCls: string; dropdownPrefixCls: string; column: ColumnType; filterState?: FilterState; filterMultiple: boolean; columnKey: Key; children: React.ReactNode; triggerFilter: (filterState: FilterState) => void; locale: TableLocale; getPopupContainer?: GetPopupContainer; } declare function FilterDropdown(props: FilterDropdownProps): JSX.Element; export default FilterDropdown;