export declare class QueryResolver { private readonly telemetry; constructor(telemetry: any); isAuthenticated(): boolean; connectCredentials(): { idToken: string | null; token: string | null; apiUrl: string; connectUrl: string; }; depGraph(p: string, base: string, head: string): Promise<{ json: any; }>; gitBranches(p: string): string[]; }