import React, { CSSProperties } from 'react'; interface Props { visible: boolean; className?: string; dropdownStyle?: CSSProperties; disableMatchWidth?: boolean; getPopupContainer?: () => HTMLElement | null; } type NativeAttrs = Omit, keyof Props>; export type SelectDropdownProps = Props & NativeAttrs; declare const SelectDropdown: React.ForwardRefExoticComponent>; export default SelectDropdown;