import React from 'react'; import { IDropDownMenuProps } from './DropDownMenu.types'; /** * DropDownMenu display a list of choices on temporary surfaces. */ declare function DropDownMenu({ className, testingID, id, children, dropDownClassName, contentRender, closeOnClick, chevron, offsetX, offsetY, placement, ...props }: IDropDownMenuProps): React.JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;