import { FileStore } from "../file-store"; export declare class LocalFileStore extends FileStore { dir: string; constructor(opts: { dir: string; }); get root(): string; resolve(path: string): string; get(path: string): Promise; set(path: string, text: string): Promise; keys(): Promise>; }