import type { ComponentSize } from '../../../types'; export type { RadioProps } from './props'; /** 绑定值类型接口 */ export type RadioModelValue = string | number | boolean; export type RadioSize = ComponentSize;