interface RadioComponentType {
    $$typeof: symbol;
    Button: RadioButtonComponentType;
    defaultProps?: Partial<RadioProps & RefAttributes<HTMLElement>>;
    displayName?: string;
    Group: RadioRadioGroupComponentType;
    propTypes?: WeakValidationMap<RadioProps & RefAttributes<HTMLElement>>;
    (props: RadioProps & RefAttributes<HTMLElement>): null | ReactElement<any, string | JSXElementConstructor<any>>;
}

Hierarchy (view full)

Properties

$$typeof: symbol
defaultProps?: Partial<RadioProps & RefAttributes<HTMLElement>>
displayName?: string
propTypes?: WeakValidationMap<RadioProps & RefAttributes<HTMLElement>>