import type { FC } from "react"; import type { BoundMenuProps } from "./BoundMenuImpl"; export type { BoundMenuProps }; /** * A menu that is bound to a MenuModel. Any child components passed in will also * appear in the popup, but won't behave like menu items. */ declare const BoundMenu: FC; export default BoundMenu;