import Button, { Props as ButtonProps } from "./Button"; import { Props as GenericDropDownProps } from "./GenericDropDown"; interface Props extends Omit, "triggerComponent" | "content" | "triggerProps">, Omit { text?: string; children?: GenericDropDownProps["content"]; } declare const Menu: ({ children, ...props }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default Menu;