/** * SQLite implementation of ArtifactStore. */ import type { SqliteConnection } from '../sqlite-connection.js'; import type { ArtifactRecord, ArtifactWithCandidates, ArtifactStore } from './artifact-store.js'; export declare class SqliteArtifactStore implements ArtifactStore { private readonly connection; constructor(connection: SqliteConnection); getArtifact(artifactId: string): Promise; getArtifactWithCandidates(artifactId: string): Promise; } //# sourceMappingURL=sqlite-artifact-store.d.ts.map