import React from 'react'; import { DropdownProps } from './types'; declare const Dropdown: ({ children, isOpen, onOptionSelect, options, onClose, maxWidth, maxHeight, alignment, portalContainer, }: DropdownProps) => React.JSX.Element; export default Dropdown;