export declare class ArtifactStore { private readonly entries; private bytes; readonly maxBytes: number; constructor(maxBytes?: number); put(value: string): string | null; get(id: string): string | undefined; clear(): void; get sizeBytes(): number; } //# sourceMappingURL=artifacts.d.ts.map