You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
573 B
13 lines
573 B
/// <reference types="react" />
|
|
import Group from './group';
|
|
import Button from './radioButton';
|
|
import { RadioProps } from './interface';
|
|
export { RadioGroupButtonStyle, RadioGroupOptionType, RadioGroupProps, RadioGroupContextProps, RadioProps, RadioChangeEventTarget, RadioChangeEvent, } from './interface';
|
|
interface CompoundedComponent extends React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLElement>> {
|
|
Group: typeof Group;
|
|
Button: typeof Button;
|
|
}
|
|
declare const Radio: CompoundedComponent;
|
|
export { Button, Group };
|
|
export default Radio;
|