import React from 'react'; import { InputProps } from '../Input/input'; export interface SelectProps extends Omit { /** 组件是否可用 */ disabled?: boolean; /** 是否支持多选 */ multiple?: boolean; /** 选中后的回调 */ onSelect?: (value: string) => void; /** 默认值 */ defaultValue?: string; } export interface SelectContextProps { valueArr: string[]; multiple?: boolean; onClick?: Function; } export declare const SelectContext: React.Context; /** #### Select 选择器使用方式 ~~~ js import { Select } from 'hongguang-style' ~~~ */ export declare const Select: React.FC;