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