import type { MenuItem } from '../../../../shared/types/menu-item'; export interface WidgetMenuButtonProps { /** Resolved menu items to show when the button is clicked. */ menuItems: MenuItem[]; /** Size (px) of the button. Falls back to the {@link MenuButton} default. */ size?: number; } /** * Renders the widget header's "⋮" menu button, opening the resolved menu items on click. */ export declare const WidgetMenuButton: ({ menuItems, size }: WidgetMenuButtonProps) => import("react/jsx-runtime").JSX.Element;