export interface SuperRadioProps { type?: 'radio' | 'button'; size?: 'small' | 'default' | 'large'; border?: boolean; options: any[]; labelKey?: string; valueKey?: string; prefix?: boolean | string | ((item: any) => string); disabled?: boolean | ((item: any) => boolean); include?: Array; exclude?: Array; }