/// <reference types="react" />
import type { TransferItem } from "./transfer";
interface Props {
    type: "left" | "right";
    item: TransferItem;
    onChange: (item: TransferItem, checked?: boolean) => void;
    isChecked?: boolean;
}
declare const CheckboxItem: (props: Props) => JSX.Element;
export default CheckboxItem;
