import { AppHost, EntryPoint } from './API'; export type Hot = typeof hot; /** * To enable HMR, use the `hot` util to wrap the export of your repluggable package * * @param {NodeModule} sourceModule * @param {EntryPoint[]} entryPoints * @param {AppHost} [host] Optional. The AppHost to be used for removing / adding entrypoints. If not provided, `window.repluggableAppDebug.host` will be used, * @example ```ts * export default hot(module, [FooEntryPoint, BarEntryPoint]) * ``` */ export declare function hot(sourceModule: any, entryPoints: EntryPoint[], host?: AppHost): EntryPoint[]; //# sourceMappingURL=hot.d.ts.map