import type { PropsOf } from "@qwik.dev/core"; import { PopoverContent } from "../popover/popover-content"; /** Props for the submenu content component */ export type PublicMenuSubmenuContentProps = PropsOf; /** A component that renders the submenu content */ export declare const MenuSubmenuContent: import("@qwik.dev/core").Component<{ align?: string | undefined; } & import("@qwik.dev/core").HTMLElementAttrs & import("@qwik.dev/core/internal").QwikAttributes>;