import React from 'react'; import { RadioProps, RadioGroupProps } from 'antd-mobile/lib/components/radio'; export interface IRadioOption { label: string; value: string; disabled?: boolean; } interface Props { options?: string[] | IRadioOption[]; layout?: 'vertical' | 'horizontal'; layoutBlock?: boolean; } export interface IRadioProps extends Props, RadioProps { } export interface IRadioGroupProps extends Props, RadioGroupProps { } declare type ComposedRadio = React.FC & { Group?: React.FC; __ANTD_MOBILE_CHECKBOX?: boolean; }; export declare const BaseRaido: React.FC; export declare const RadioGroup: React.FC; export declare const Radio: ComposedRadio; export default Radio;