import type { EvidenceResolver } from '../../contracts/evidence'; export declare class LocalFsResolver implements EvidenceResolver { readonly lane = "A"; private rootDir; private hashCache; constructor(rootDir?: string); /** Resolve a client/relative path the same way the pre-refactor Brain did: against the root. */ private resolvePath; hashFile(pathStr: string): string | null; hashSymbol(pathStr: string, symbolName: string): { raw: string; normalized: string; } | null; } export default LocalFsResolver; //# sourceMappingURL=LocalFsResolver.d.ts.map