import type { AsChildTypes } from "../types"; import type { BindableProps } from "../types"; import { type PropsOf } from "@qwik.dev/core"; export type PublicMenuItemProps = Omit, "onSelect$"> & { /** Event handler called when the item is selected */ onSelect$?: (value: string | undefined) => void; /** Whether to close the menu when the item is selected (default: true) */ closeOnSelect?: boolean; } & BindableProps<{ value: string; disabled: boolean; }>; /** Interactive item within a menu */ export declare const MenuItem: import("@qwik.dev/core").Component;