import React from 'react'; export interface RadioProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; defaultValue?: any; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; dataSource?: any; radioType?: any; selfSpan?: any; colSpan?: any; rangeLimit?: any; defaultOptions?: any; optionMarginRight?: any; valueKey?: any; labelKey?: any; options?: any; style?: React.CSSProperties; attr?: any; staticService?: any; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; rules?: any[]; colon?: boolean; isFormChild?: boolean | undefined; readOnly: boolean; tipSize?: string; tipWidth?: string; tipHeight?: string; } export interface RadioWrapperProps { children: React.ReactElement; } export declare const WrapperRadio: React.FC; /** * 处理数据 * @param dataSource 数据源 * @param valueKey * @param labelKey * @returns */ export declare const handleDataSource: (dataSource: any[], valueKey?: string, labelKey?: string) => any[]; declare const Radio: React.ForwardRefExoticComponent>; export default Radio;