import { PropsWithChildren, ReactElement } from "react";
interface Props {
isSelected: boolean;
isBulkSelected: boolean;
onSelectItem: VoidFunction;
}
export declare const CheckBox: ({ isSelected, isBulkSelected, onSelectItem }: PropsWithChildren<Props>) => ReactElement;
export {};