import type { Hash } from '../hash.ts'; import type { Chunk } from './chunk.ts'; import type { MustGetChunk } from './store.ts'; /** * A visitor walks the DAG starting at a given root and visits each chunk. */ export declare class Visitor { #private; constructor(dagRead: MustGetChunk); visit(h: Hash): Promise; visitChunk(chunk: Chunk): Promise; } //# sourceMappingURL=visitor.d.ts.map