import * as React from 'react'; import { AbstractCheckboxGroupProps } from '../checkbox/Group'; import { AbstractCheckboxProps } from '../checkbox/Checkbox'; export type RadioGroupButtonStyle = 'outline' | 'solid'; export interface RadioGroupProps extends AbstractCheckboxGroupProps { defaultValue?: any; value?: any; onChange?: (e: RadioChangeEvent) => void; size?: 'large' | 'default' | 'small'; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; name?: string; children?: React.ReactNode; id?: string; buttonStyle?: RadioGroupButtonStyle; } export interface RadioGroupState { value: any; } export interface RadioGroupContext { radioGroup: { onChange: React.ChangeEventHandler; value: any; disabled: boolean; name: string; }; } export type RadioProps = AbstractCheckboxProps; export interface RadioChangeEventTarget extends RadioProps { checked: boolean; } export interface RadioChangeEvent { target: RadioChangeEventTarget; stopPropagation: () => void; preventDefault: () => void; nativeEvent: MouseEvent; }