import { ServerApiClient, type ServerClientOptions } from "./server-api.js"; export interface ArtifactDownloadUrlsRequest { files?: Array<{ path: string; chunkIndices?: number[]; }>; expiresInSeconds?: number; } export type ArtifactManifest = Record; export type ArtifactDownloadUrls = Record; export declare class ArtifactsClient extends ServerApiClient { constructor(options?: ServerClientOptions); manifest(artifactId: string): Promise; downloadUrls(artifactId: string, request: ArtifactDownloadUrlsRequest): Promise; } //# sourceMappingURL=artifacts.d.ts.map