@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
10 lines (9 loc) • 523 B
TypeScript
import { type SlotComponent } from "@1771technologies/lytenyte-core/yinternal";
export interface VisibilityCheckbox {
readonly as?: SlotComponent<{
visible: boolean;
indeterminate: boolean;
toggle: (s?: boolean) => void;
}>;
}
export declare const VisibilityCheckbox: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & VisibilityCheckbox, "ref"> & import("react").RefAttributes<HTMLDivElement>>;