export declare class Menu { private key; constructor(key: string); /** * remove the menu */ remove(): void; /** * Programmatically open the menu (only works if the menu has been defined with the "iframe" property) */ open(): void; }