/** * #### The entry point * - exports the typedoc-plugin loader * - exports the Hot entry class * * @module INDEX */ import { Application } from 'typedoc'; import { hotOptions } from './types'; /** * Hooks into typedoc as a module and declares the "hot-dev" options set. * * @param app The typedoc application */ export declare function load(app: Application): void; export declare function init(overrideHot?: hotOptions): Promise<{ tsc: any; tdoc: any; npmScripts: any; fileWatcher: any; opts: import("./types").allOptions; }>; //# sourceMappingURL=index.d.ts.map