import { LocalFileStore } from "./local-file-store"; export declare class FakeFileStore extends LocalFileStore { dir: string; faked: Record; constructor(opts: { dir: string; faked?: Record; }); fake(path: string, text: string): void; keys(): Promise>; get(path: string): Promise; }