UNPKG

@1771technologies/lytenyte-pro

Version:

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

12 lines (11 loc) 504 B
import type { JSX } from "react"; interface RadioGroupContext { readonly value: string; readonly onChange?: (v: string) => void; } export declare const context: import("react").Context<RadioGroupContext>; export declare const RadioGroup: import("react").ForwardRefExoticComponent<Omit<RadioGroup.Props, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export declare namespace RadioGroup { type Props = Omit<JSX.IntrinsicElements["div"], "onChange"> & RadioGroupContext; } export {};