import { type AbsolutePath } from "../utils/path-utils"; export declare const fileWrittenAt: Map<`/${string}`, number>; /** * 우리가 디스크에 write한 path를 등록합니다. write 직후 호출하세요. * 디스크에서 mtime을 직접 읽어 정확한 값으로 등록합니다. */ export declare function trackWritten(filePath: AbsolutePath): Promise; /** * 주어진 path가 가장 최근 우리 write 이후로 외부에서 수정된 적 없는지 확인합니다. * true면 "내가 쓴 그대로 남아있음", false면 "외부에서 수정됐거나 우리가 쓴 적 없음". */ export declare function isLastChangedByMe(filePath: AbsolutePath): Promise; //# sourceMappingURL=file-tracking.d.ts.map