UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

11 lines (10 loc) 333 B
import type { FC, ReactNode } from 'react'; import { RadioValue } from '.'; export interface RadioGroupProps { value?: RadioValue | null; onChange?: (val: RadioValue) => void; defaultValue?: RadioValue | null; disabled?: boolean; children?: ReactNode; } export declare const Group: FC<RadioGroupProps>;