import { CheckboxOptionType } from 'antd/lib/checkbox/Group'; import { RadioChangeEvent } from 'antd/lib/radio'; import React from 'react'; import { ValueEditor } from '../../react/editor'; export declare const RadioButtonType: { circleDot: string; button: string; }; export declare const RadioGroupButtonStyle: { outline: string; solid: string; }; export declare const RadioSize: { default: string; large: string; small: string; }; export declare class Radio extends ValueEditor { defaultValue?: any; buttonType?: keyof typeof RadioButtonType; size?: keyof typeof RadioSize; name?: string; optionList?: Array; buttonStyle?: keyof typeof RadioGroupButtonStyle; onChange?: (e: RadioChangeEvent) => void; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; onRender?: (() => JSX.Element) | undefined; } export declare const RadioControl: any;