import React from 'react'; declare const DropdownMenu: React.FC; interface Item { label: string; route: string; } interface DropdownColumn { items: Item[]; } interface DropdownMenuItem { label: string; route: string; dropdownColumns?: DropdownColumn[]; onClick?: (e: React.SyntheticEvent, item: Item) => void; } interface DropdownMenuProps { items: DropdownMenuItem[]; hideOverlay?: () => void; } export default DropdownMenu;