UNPKG

@appbuckets/react-ui

Version:
10 lines (9 loc) 293 B
import * as React from 'react'; import RadioOption from './RadioOption'; import { RadioProps } from './Radio.types'; declare type RadioGroupChildren = { Option: typeof RadioOption; }; declare const Radio: React.VoidFunctionComponent<RadioProps> & RadioGroupChildren; export default Radio;