/** * @file 所有列表选择类控件的父级,比如 Select、Radios、Checkboxes、 * List、ButtonGroup 等等 */ import { Api, PlainObject } from '../../types'; import { FormControlProps, FormItemBasicConfig, FormBaseControl } from './Item'; export declare type OptionsControlComponent = React.ComponentType; import React from 'react'; import { Option, OptionProps } from '../../components/Select'; import { SchemaApi, SchemaExpression, SchemaObject, SchemaTokenizeableString } from '../../Schema'; export { Option }; export interface FormOptionsControl extends FormBaseControl { /** * 选项集合 */ options?: Array