import type { Client } from "../kernel.js"; import type { ProjectArchiveCreateOptions, ProjectArchiveDownload, ProjectArchiveDto, ProjectArchiveExportOptions, ProjectArchiveExportResult, ProjectArchiveWaitOptions } from "./archives.types.js"; export declare class Archives { private readonly client; constructor(client: Client); create(projectId: string, opts?: ProjectArchiveCreateOptions): Promise; get(projectId: string, archiveId: string): Promise; wait(projectId: string, archiveId: string, opts?: ProjectArchiveWaitOptions): Promise; download(projectId: string, archiveId: string): Promise; export(projectId: string, opts?: ProjectArchiveExportOptions): Promise; } //# sourceMappingURL=archives.d.ts.map