import React from 'react'; import { EngineApisType } from '@lingxiteam/types'; export interface MyModalSelectProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; getCompPropMapState?: any; compId?: any; getFieldDecorator?: any; form?: any; name?: any; fieldName?: any; required?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; hidden?: any; colSpan?: any; onIconClick?: any; defaultValue?: any; validateStatus?: any; help?: any; postfix?: any; postfixStyle?: any; compType?: any; onSelectedRowsRelease?: any; onSelectedRowKeysRelease?: any; onSelectedKeysRelease?: any; onEditingKeyRelease?: any; onInlineEditRelease?: any; onInlineSaveRelease?: any; onSelectedDataRelease?: any; pageState?: any; pagePublicState?: any; className?: any; style?: React.CSSProperties; disabled?: boolean; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; minLength?: any; maxLength?: any; rules?: any[]; colon?: boolean; allowClear?: any; clearIcon?: any; modalInfo?: any; appId?: any; pageId?: any; onClick?: any; postfixIcon?: any; postfixIconPosition?: any; size?: any; InputNumber?: any; mode?: any; isFormChild?: boolean | undefined; readOnly: boolean; tipSize?: string; tipWidth?: string; tipHeight?: string; engineApis?: EngineApisType; getEngineApis?: () => EngineApisType; } export interface WrapperModalSelectProps { children: React.ReactElement; } declare const MODALSELECT_WRAPPER_CLASSNAME = "ued-input-wrap modalSelect"; declare const WrapperModalSelect: React.FC; declare const ModalSelect: React.ForwardRefExoticComponent>; export default ModalSelect; export { MODALSELECT_WRAPPER_CLASSNAME, WrapperModalSelect };