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