import { APIResource } from "../../core/resource.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class Archives extends APIResource { /** * Attach an archive to an agent. */ attach(archiveID: string, params: ArchiveAttachParams, options?: RequestOptions): APIPromise; /** * Detach an archive from an agent. */ detach(archiveID: string, params: ArchiveDetachParams, options?: RequestOptions): APIPromise; } export type ArchiveAttachResponse = unknown; export type ArchiveDetachResponse = unknown; export interface ArchiveAttachParams { /** * The ID of the agent in the format 'agent-' */ agent_id: string; } export interface ArchiveDetachParams { /** * The ID of the agent in the format 'agent-' */ agent_id: string; } export declare namespace Archives { export { type ArchiveAttachResponse as ArchiveAttachResponse, type ArchiveDetachResponse as ArchiveDetachResponse, type ArchiveAttachParams as ArchiveAttachParams, type ArchiveDetachParams as ArchiveDetachParams, }; } //# sourceMappingURL=archives.d.ts.map