import React from 'react'; import { RadioGroupProps } from 'antd'; type OptionsType = { label: string; value: string; [propName: string]: any; }; interface RadioValue { value?: string; other?: string; } export interface ApaasRadioProps extends Omit { showOther?: boolean; horizontal?: boolean; options?: OptionsType[]; disabled?: boolean; hideUnselectedItem?: boolean; onChange?: (value: RadioValue) => void; value?: RadioValue; } declare function ApaasRadio(props: ApaasRadioProps): React.ReactElement; export default ApaasRadio;