/** * Imports a module and returns the value of a specific export. * The module is executed in a new worker thread, which ensures that the module and * its dependencies are completely reloaded. * * @param filePath - The path or multiple paths to the module to import. * @param exportSymbolName - name of the exported symbol to get the value of. defaults to `"default"`. * @returns A Promise that resolves to the exports of the imported module. */ export declare function importFresh(filePath: string[], exportSymbolName?: string): Promise; export declare function importFresh(filePath: string, exportSymbolName?: string): Promise; export interface ImportFreshWorkerData { filePath: string | string[]; exportSymbolName: string; } //# sourceMappingURL=import-fresh.d.ts.map