/// <reference types="react" />
import { ICheckboxEvent } from '../../checkbox';
import { II18nLocaleTransfer } from '../../i18n';
interface IProps {
    isAllChecked: boolean;
    handleCheckBoxChange: (e: ICheckboxEvent<boolean>) => void;
    compontentDisabled: boolean;
    classNamePrefix: string;
    i18n: II18nLocaleTransfer;
    selectedKeysLength: number;
    listDataLength: number;
    title: React.ReactNode;
}
declare const AllCheckBox: React.FC<IProps>;
export default AllCheckBox;
