import React from 'react'; import { RadioProps, RadioGroupProps } from 'antd/es/radio'; import { FC, IglooComponentProps } from '../types'; import './style'; import { ComponentProps } from '../utils/option-utils'; import { DefaultOptionType } from 'rc-select/lib/Select'; type Props = RadioProps & IglooComponentProps; declare const IglooRadio: FC; export interface Option extends DefaultOptionType { extraInfo?: { content: any; shownTrigger: 'unchecked' | 'checked' | 'all'; }; } export interface IProps extends IglooComponentProps, Omit, ComponentProps { className?: string; radioType?: string; options: Option[]; preview?: boolean; } export declare const InnerRadioGroup: FC; export declare const RadioGroup: FC>; export default IglooRadio; export { default as RadioGroupWithOther } from './radio-group-with-other';