UNPKG

573 BTypeScriptView Raw
1import * as React from 'react';
2import Group from './group';
3import Button from './radioButton';
4import { RadioProps } from './interface';
5export { RadioGroupButtonStyle, RadioGroupOptionType, RadioGroupProps, RadioGroupContextProps, RadioProps, RadioChangeEventTarget, RadioChangeEvent, } from './interface';
6interface CompoundedComponent extends React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLElement>> {
7 Group: typeof Group;
8 Button: typeof Button;
9}
10declare const Radio: CompoundedComponent;
11export { Button, Group };
12export default Radio;