import * as React from "react"; import { ButtonMinimalProps } from "../../ButtonMinimal"; export interface Item extends ButtonMinimalProps { title: string; href?: any; color?: string; iconColor?: string; onClick?: (evt: React.SyntheticEvent) => void; } declare const DropdownMenu: (item: Item, index: number, getItemProps: any) => JSX.Element; export default DropdownMenu;