import { BookStore } from "../book-store"; import { Book } from "../book"; import { LocalFileStore } from "@xieyuheng/enchanter/lib/file-stores"; export declare class LocalBookStore extends BookStore { get(config_file: string): Promise>; fake(dir: string, faked?: Record): Book; findUpOrFake(dir: string): Promise>; }