/// import type { CommonPropsType } from '../../types'; import type { DataType } from '../../../configs/components/wd-radio'; export declare const WdRadio: ({ index, option, name, size, disabled, checkedItemValue, getChangeHandler, }: WdRadioProps) => JSX.Element; export interface WdRadioProps extends CommonPropsType, DataType { option?: object; index?: number; checkedItemValue?: string; getChangeHandler?: (val: any) => any; disabled?: boolean; }