export declare function readJsonFile(filePath: string): Promise; export declare function writeJsonAtomic(filePath: string, value: unknown, options?: { mode?: number; }): Promise; export declare function createAsyncLock(): (fn: () => Promise) => Promise;