import { LibraryImportOptions } from './core.js'; import { BrowserHost, PlaygroundTspLibrary } from './types.js'; export declare function resolveVirtualPath(path: string, ...paths: string[]): string; /** * Load libraries in parallel from the given list. * @param libsToLoad List of library names. Must be available in the webpage importmap. * @param importOptions Import configuration. */ export declare function loadLibraries(libsToLoad: readonly string[], importOptions?: LibraryImportOptions): Promise>; /** * Create the browser host from the list of libraries. * @param libsToLoad List of libraries to load. Those must be set in the webpage importmap. * @param importOptions Import configuration. * @returns */ export declare function createBrowserHost(libsToLoad: readonly string[], importOptions?: LibraryImportOptions): Promise; //# sourceMappingURL=browser-host.d.ts.map