import { MutagentCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/http-client-errors.js"; import * as errors from "../models/errors/index.js"; import { MutagentError } from "../models/errors/mutagent-error.js"; import { ResponseValidationError } from "../models/errors/response-validation-error.js"; import { SDKValidationError } from "../models/errors/sdk-validation-error.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Rebuild the box a session runs on from a checkpoint * * @remarks * The reference-addressed form of the sandbox restore: same body, same behaviour, and the answer adds the new session reference. The box need not still exist. A box running a managed agent is refused with 409 `MANAGED_AGENT_RESTORE_UNSUPPORTED` (its package cannot be re-staged yet). * * If set, this operation will use {@link Security.bearerAuth} from the global security. */ export declare function sandboxRestoreHelixSession(client: MutagentCore, request: operations.RestoreHelixSessionRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=sandbox-restore-helix-session.d.ts.map