/// <reference types="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';
};
declare const CheckboxFilter: (props: Props) => JSX.Element;
export default CheckboxFilter;
