import React from 'react'; export interface MenuTitle { title?: string; renderTitle?: () => JSX.Element; } interface Props extends MenuTitle { classes?: { title?: string; }; children: React.ReactNode; textColor?: string; dropdownColor?: string; } /** * * @param object contains text, color, children. Where text is the anchor text. Color is a string for link text color, and children are MenuItems typically with Links. */ declare const MenuHover: ({ title, renderTitle, classes, textColor, dropdownColor, children, }: Props) => JSX.Element; export default MenuHover;