import { PropsWithChildren } from 'react'; import type { RadioProps, RadioGroupProps } from '@arco-design/web-react'; interface XRadioGroupProps extends PropsWithChildren { buttonStyle?: 'solid' | 'semi' | 'transparent'; block?: boolean; } export type { RadioProps, XRadioGroupProps as RadioGroupProps };