import React from 'react'; import type { CommonPropsType } from '../../types'; import type { DataType } from '../../../configs/components/wd-radio'; export declare const WdRadioList: React.ForwardRefExoticComponent>; export interface WdRadioListProps extends CommonPropsType, DataType { onChange?: (val: any) => void; }