import React from 'react'; import { EngineBaseProps } from '@lingxiteam/types'; export interface MySelectProps extends EngineBaseProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; defaultValue?: any; filter?: any; filterOption?: any; valueKey?: any; labelKey?: any; rangeLimit?: any; validateStatus?: any; help?: any; style?: React.CSSProperties; mode: 'multiple' | undefined; dataSource?: any; classification?: any; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; rules?: any[]; colon?: boolean; min?: number; max?: number; isFormChild?: boolean | undefined; customRenderLabel?: any; customRenderOption?: any; readOnly: boolean; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis: any; checkedAll?: boolean; /** * 是否输入触发,默认fasel,也就是回车键触发, 为true的时候表示实时搜索 */ isInputSearch?: boolean; localFilterType?: 'default' | 'label' | 'value'; } interface WrapperSelectProps { children: React.ReactElement; } declare const SELECT_WRAPPER_CLASSNAME = "ued-select-wrap"; declare const WrapperSelect: React.FC; declare const Select: React.ForwardRefExoticComponent>; export default Select; export { SELECT_WRAPPER_CLASSNAME, WrapperSelect };