import Document from "../documentation/Document"; export default class DocumentationCache { static Documents: Document[] | null; private constructor(); static load(): void; static getIndex(id: string): number; static get(path: string): Document | undefined; static remove(document: Document): void; static set(document: Document): void; static getByFolderPath(path: string): Document[]; static getFolderByFolderPath(path: string): Document | undefined; }