import { CSSProperties } from 'react'; import { Option } from '../AyForm/ay-form'; import './index.less'; declare type ValueType = Array | string | number | undefined; export interface AyCardGroupProps { value?: any; onChange?: (values: ValueType) => void; /** 是否支持选择多个 */ multiple?: boolean; /** 选项 */ options?: Array