import { ApolloClient, NormalizedCacheObject } from '@apollo/client/core'; import * as pino from 'pino'; import { CodeCatalystAuthentication } from '../publish/codecatalyst-authentication'; export interface SpaceScopeTarget { name: string; id: string; } export interface ProjectScopeTarget { space: SpaceScopeTarget; project: { name: string; id: string; }; } export declare const getGQLClient: (_logger: pino.BaseLogger, options: { endpoint: string; authentication: CodeCatalystAuthentication; headers?: { [key: string]: string; } | undefined; }) => ApolloClient;