import type { AuthSessionsAllResponse, AuthSessionsOneResponse } from "../models.js"; import { AuthSessionsCreateService } from "./authSessionsCreate.js"; import { AuthSessionsUpdateService } from "./authSessionsUpdate.js"; import { AuthSessionsValidateService } from "./authSessionsValidate.js"; import { BaseClient, type RequestOptions, type SDKOptions } from "../core.js"; export declare class AuthSessionsService extends BaseClient { constructor(options: SDKOptions); private _validate?; private _create?; private _update?; get validate(): AuthSessionsValidateService; get create(): AuthSessionsCreateService; get update(): AuthSessionsUpdateService; /** * Get AuthSessions */ all(projectName: string, options?: RequestOptions): Promise; /** * Get AuthSession */ one(projectName: string, authSessionId: string, options?: RequestOptions): Promise; /** * Delete AuthSession */ delete(projectName: string, authSessionId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=authSessions.d.ts.map