UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

12 lines (11 loc) 564 B
import { type JSX, type ReactNode } from "react"; export declare const CheckboxItem: import("react").ForwardRefExoticComponent<Omit<CheckboxItem.Props, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export declare namespace CheckboxItem { type Props = Omit<JSX.IntrinsicElements["div"], "children"> & { readonly disabled?: boolean; readonly checked: boolean; readonly onCheckChange?: (b: boolean) => void; readonly children?: ReactNode | ((b: boolean) => ReactNode); readonly closeOnAction?: boolean; }; }