import * as React from 'react'; import type { DataType, EventsType } from '../../../configs/components/form-radio'; import type { CommonPropsType } from '../../types'; export type FormRadioProps = CommonPropsType & { onChange: (v: string) => void; disabled: boolean; readOnly: boolean; } & DataType & EventsType; declare const FormRadio: React.ForwardRefExoticComponent void; disabled: boolean; readOnly: boolean; } & import("type-fest").Simplify<{ label: string; name: string; format: string; value: string; required: boolean; disabled: boolean; layout: "" | "vertical" | "horizontal"; range: { label: string; value: string; }[]; requiredFlag: boolean; labelVisible: boolean; enumName: string; tipBlock: string; requiredMsg: string; }> & import("type-fest").Simplify> & React.RefAttributes>; export default FormRadio;