import type { AuthSessionsUpdateResultResponse, AuthSessionsUpdateStartRequestBody, AuthSessionsUpdateStartResponse } from "../models.js"; import { BaseClient, type RequestOptions, type SDKOptions } from "../core.js"; export declare class AuthSessionsUpdateService extends BaseClient { constructor(options: SDKOptions); /** * Update AuthSession - Start */ start(projectName: string, authSessionId: string, body: AuthSessionsUpdateStartRequestBody, options?: RequestOptions): Promise; /** * Update AuthSession - Result */ result(projectName: string, authSessionId: string, operationId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=authSessionsUpdate.d.ts.map