import { ApolloClient } from 'apollo-client'; import { InMemoryCache } from 'apollo-cache-inmemory'; import { IQuickInputService, IPickItem, IPickInputOptions, IInputOptions } from '@workbench-stack/core'; export declare class QuickInputService implements IQuickInputService { protected client: ApolloClient; protected cache: InMemoryCache; constructor(client: ApolloClient, cache: InMemoryCache); cancel(): Promise; input(options?: IInputOptions): Promise; pick(picks: IPickItem[], options?: IPickInputOptions): Promise; setSelected(selectedValue: IPickItem[], inputValue: string): Promise; }