UNPKG

reablocks

Version:
15 lines (13 loc) 396 B
import { RadioGroupContextProps } from './RadioGroupContext'; import { FC } from 'react'; export interface RadioGroupProps extends RadioGroupContextProps { /** * The Radio Buttons to display in the group. */ children: any; /** * Additional CSS classes to apply to the Radio group */ className?: string; } export declare const RadioGroup: FC<RadioGroupProps>;