import type { AuthSessionsCreateResultResponse, AuthSessionsCreateStartRequestBody, AuthSessionsCreateStartResponse } from "../models.js"; import { BaseClient, type RequestOptions, type SDKOptions } from "../core.js"; export declare class AuthSessionsCreateService extends BaseClient { constructor(options: SDKOptions); /** * Create AuthSession - Start */ start(projectName: string, body: AuthSessionsCreateStartRequestBody, options?: RequestOptions): Promise; /** * Create AuthSession - Result */ result(projectName: string, operationId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=authSessionsCreate.d.ts.map