import { type ResolvedControlProps } from "../../renderingRules"; import type { ButtonControlConfig } from "../../types"; type MenuButtonProps = Readonly<{ config: ButtonControlConfig; resolved: ResolvedControlProps; }>; /** * Renders a button control within a menu context. * Layout: label on the left, icon on the right (consistent with other menu items). * The entire row is clickable. * Purely presentational -- all rendering decisions come from resolved props. * * @internal */ export declare const MenuButton: ({ config, resolved }: MenuButtonProps) => import("react/jsx-runtime").JSX.Element; export {};