export declare class Context { private readonly _correlationID; private readonly _userEmail; private readonly _securedAuthToken?; constructor(userEmail: string, _correlationID: string, authToken?: string); get userEmail(): string; get correlationId(): string; get securedAuthToken(): import("./security-token").ISecuredTokenInformation; get accessToken(): string; }