import { IItemProvider } from './itemProvider';
export declare class GraphQLItemProvider implements IItemProvider {
    endpointUrl: any;
    apiKey: any;
    cache: Map<string, any>;
    constructor(options: any);
    getItemAncestorInfoById(itemId: string): Promise<any>;
    getItemDescendantsInfoById(itemId: string): Promise<any>;
    getItemById(itemId: string): Promise<any>;
    runQuery(query: any, variables: any): Promise<any>;
}
