import { RadioChangeEvent, RadioProps } from 'antd'; import React from 'react'; import type { ProFormOtherType } from '../../../propsType'; export interface Props extends Omit { dataSource: any[]; onChange: (value: any, e: RadioChangeEvent) => void; fieldNames?: { label: string; value: string; }; otherProps?: ProFormOtherType; isView?: boolean; } declare const Radio: React.FC; export default Radio;