import React from 'react'; import { Color } from './DropdownToggle'; declare type DropdownMenuProps = { position?: 'right' | 'left' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; wrapContent?: boolean; className?: string; children?: React.ReactNode; color?: Color; }; export declare const DropdownMenu: React.FC; export {};