import { type SlotComponent } from "@1771technologies/lytenyte-core/yinternal";
export interface InclusionCheckbox {
    readonly as?: SlotComponent<{
        checked: boolean;
        indeterminate: boolean;
        toggle: (s?: boolean) => void;
    }>;
}
export declare const InclusionCheckbox: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & InclusionCheckbox, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
