import type { ElementType } from "react";
import type { HovercardOptions } from "../hovercard/hovercard.tsx";
import type { Props } from "../utils/types.ts";
import type { MenuListOptions } from "./menu-list.tsx";
declare const TagName = "div";
type TagName = typeof TagName;
/**
* Returns props to create a `Menu` component.
* @see https://ariakit.com/components/menu
* @example
* ```jsx
* const store = useMenuStore();
* const props = useMenu({ store });
* Edit
*
*
*
*
* ```
*/
export declare const useMenu: import("../utils/types.ts").Hook<"div", MenuOptions<"div">>;
/**
* Renders a dropdown menu element that's controlled by a
* [`MenuButton`](https://ariakit.com/reference/menu-button) component.
*
* This component uses the primitive
* [`MenuList`](https://ariakit.com/reference/menu-list) component under the
* hood. It renders a popover and automatically focuses on items when the menu
* is shown.
* @see https://ariakit.com/components/menu
* @example
* ```jsx {3-6}
*
* Edit
*
*
* ```
*/
export declare const Menu: (props: MenuProps<"div">) => import("react/jsx-runtime").JSX.Element | null;
export interface MenuOptions extends MenuListOptions, Omit, "store"> {
}
export type MenuProps = Props>;
export {};