UNPKG

@1771technologies/lytenyte-pro

Version:

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

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