export declare type RadioGroupButtonStyle = 'outline' | 'solid' | 'container'; import { RadioGroupProps as AntdRadioGroupProps, RadioProps as AntdRadioProps } from 'antd/es/radio/interface'; export interface RadioGroupProps extends Omit { buttonStyle: RadioGroupButtonStyle; } export interface RadioProps extends AntdRadioProps { size?: 'large' | 'middle' | 'small'; } export { RadioGroupOptionType, RadioGroupContextProps, RadioChangeEventTarget, RadioChangeEvent } from 'antd/es/radio/interface';