import type { AuthSessionsValidateResultResponse, AuthSessionsValidateStartRequestBody, AuthSessionsValidateStartResponse } from "../models.js"; import { BaseClient, type RequestOptions, type SDKOptions } from "../core.js"; export declare class AuthSessionsValidateService extends BaseClient { constructor(options: SDKOptions); /** * Validate AuthSession - Start */ start(projectName: string, authSessionId: string, body: AuthSessionsValidateStartRequestBody, options?: RequestOptions): Promise; /** * Validate AuthSession - Result */ result(projectName: string, authSessionId: string, operationId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=authSessionsValidate.d.ts.map