import { Library, LibraryConfig, DocBuilder, ModuleViewer } from "../library"; import { Doc } from "../doc"; export declare class SingleFileLibrary extends Library { config: LibraryConfig; path: string; doc_builder: DocBuilder; module_viewer: ModuleViewer; constructor(opts: { path: string; doc_builder: DocBuilder; module_viewer: ModuleViewer; }); fetch_doc(path: string): Promise>; fetch_docs(): Promise>>; reload(path: string): Promise; load(path: string): Promise; load_mods(): Promise>; }