import { ClientConfig } from "../config/ClientConfig"; import { Credentials } from "../auth/Credentials"; import { RequestKey } from "./constants/RequestKey"; import { HttpBaseRequest } from "./http/HttpBaseRequest"; export declare class ExecutionContext { private readonly _clientConfig; private _pdfServiceRequestContext; private readonly _authenticator; constructor(credentials: Credentials, clientConfig?: ClientConfig); get clientConfig(): ClientConfig; getBaseRequestFromRequestContext(requestKey: RequestKey): HttpBaseRequest; validate(): void; }