import { ApolloClient } from 'apollo-client'; import { InMemoryCache } from 'apollo-cache-inmemory'; import { IContextMenuService, IContextMenu_input, IActionRun_input } from '@workbench-stack/core'; export declare class ContextMenuService implements IContextMenuService { protected client: ApolloClient; protected cache: InMemoryCache; constructor(client: ApolloClient, cache: InMemoryCache); showContextMenu(delegate: IContextMenu_input): Promise; hideContextMenu(): Promise; runMenuAction(argument: IActionRun_input): Promise; }