import * as React from "react";
import type { TableLocale } from "rc-master-ui/es/table/interface";
type Props = {
    options: any[];
    filterSearch?: boolean;
    open?: boolean;
    tablePrefixCls?: string;
    prefixCls?: string;
    dropdownPrefixCls?: string;
    filterMultiple: boolean;
    showFilter?: boolean;
    onSelect?: (value: any) => void;
    selectedKeys: string[];
    locale?: TableLocale;
    filterMode?: 'menu' | 'tree';
    searchValue: string;
    setSearchValue: (value: any) => void;
};
declare const CheckboxFilter: (props: Props) => React.JSX.Element;
export default CheckboxFilter;
