import React from 'react'; interface optionProps { value: any; label: string; name?: string; code?: string; } export interface MyRadioEDProps { fieldName?: any; selfSpan?: number; labelCol?: number; wrapperCol?: number; options?: optionProps[]; defaultOptions?: optionProps[]; radioType?: string; optionMarginRight?: string; staticData?: { data: optionProps[]; type: string; }; className?: string; } declare const RadioED: React.FC; export default RadioED;