import React from 'react'; export interface MySuperSelectProps { visible?: boolean; fieldName?: any; name?: any; hidden?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; defaultValue?: any; value?: any; style?: React.CSSProperties; mode?: string; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; colon?: boolean; compId?: string; isFormChild?: boolean | undefined; tipSize?: string; tipWidth?: string; tipHeight?: string; comSelectRef?: any; formFieldsRef?: any; readOnly: boolean; disabled: boolean; required?: any; } interface WrapperSuperSelectProps { children: any; } declare const SUPERSELECT_WRAPPER_CLASSNAME = "ued-superSelect-wrap"; declare const WrapperSuperSelect: ({ children }: WrapperSuperSelectProps) => React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; declare const SuperSelect: React.ForwardRefExoticComponent>; export default SuperSelect; export { SUPERSELECT_WRAPPER_CLASSNAME, WrapperSuperSelect };