export declare class MutationResolver { private readonly telemetry; private readonly readSettings; private readonly commands; constructor(telemetry: any, readSettings: any, commands: any); createAttachment(workspace: string): Promise<{ attachment: string | null; }>; getAuthenticationUrl(): Promise<{ authenticationUrl: string; }>; unauthenticate(): Promise<{ response: string; }>; trackLogin(userId?: string): Promise<{ result: boolean; }>; }