import React from 'react'; import { IProps, HTMLDivProps } from '@uiw/utils'; import { RadioProps } from './Radio'; import './style/group.less'; export interface RadioGroupProps extends IProps, HTMLDivProps { name?: RadioProps['name']; value?: RadioProps['value']; onChange?: RadioProps['onChange']; } export declare const RadioGroup: React.ForwardRefExoticComponent>; export default RadioGroup;