import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { Create } from "./create.js"; import { Recorder } from "./recorder.js"; import { Update } from "./update.js"; export declare class AuthSessions extends ClientSDK { private _create?; get create(): Create; private _update?; get update(): Update; private _recorder?; get recorder(): Recorder; /** * Get Auth Sessions * * @remarks * Gets all authentication sessions of project */ all(projectName: string, options?: RequestOptions): Promise>; /** * Get Auth Session * * @remarks * Gets authentication session of project by ID */ one(projectName: string, authSessionId: string, options?: RequestOptions): Promise; /** * Delete Auth Session * * @remarks * Deletes an authentication session by ID. */ delete(projectName: string, authSessionId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=authsessions.d.ts.map