///
import * as React from 'react';
import { AbstractCheckboxGroupProps } from '../checkbox/Group';
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
export interface RadioGroupProps extends AbstractCheckboxGroupProps {
defaultValue?: any;
value?: any;
onChange?: React.ChangeEventHandler;
size?: 'large' | 'default' | 'small';
onMouseEnter?: React.MouseEventHandler;
onMouseLeave?: React.MouseEventHandler;
name?: string;
children?: React.ReactNode;
id?: string;
}
export interface RadioGroupState {
value: any;
}
export interface RadioGroupContext {
radioGroup: {
onChange: React.ChangeEventHandler;
value: any;
disabled: boolean;
name: string;
};
}
export declare type RadioProps = AbstractCheckboxProps;