export type MenuDropdown = {
    /**
     * - The text label displayed for this menu item.
     */
    label: string;
    /**
     * -
     * The function to execute when this item is clicked. Optional if 'items' is provided.
     */
    onClick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | undefined;
    /**
     * -
     * A list of child menu items for creating submenus.
     * If provided, this item becomes a parent to a nested dropdown.
     */
    items?: MenuDropdown[] | undefined;
};
//# sourceMappingURL=TinyWindowFrameManager.d.mts.map