import { PureComponent } from 'react'; import { TableFilter } from './types'; declare type Props = { children: any; addFilter: (filter: TableFilter) => void; filterKey: string; }; export default class FilterRow extends PureComponent { props: Props; onClick: (e: MouseEvent) => void; menuItems: { label: string; click: () => void; }[]; render(): any; } export {}; //# sourceMappingURL=FilterRow.d.ts.map