import type { PropsFor } from "../../types.js"; export type MenuProps = PropsFor<"div", { /** Apply a horizontal (inline) layout for child elements. */ horizontal?: boolean; }>; declare const Menu: { ({ horizontal, className, ...props }: MenuProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Menu;