import { DevServerCoreConfig, FSWatcher, Plugin as WdsPlugin, Context } from '@web/dev-server-core'; import { PluginContext, MinimalPluginContext, TransformPluginContext, CustomPluginOptions, ModuleInfo } from 'rollup'; export declare function createRollupPluginContextAdapter(pluginContext: T, wdsPlugin: WdsPlugin, config: DevServerCoreConfig, fileWatcher: FSWatcher, context: Context, pluginMetaPerModule: Map): T & { getModuleInfo(id: string): ModuleInfo; addWatchFile(id: string): void; emitAsset(): never; emitFile(): never; getAssetFileName(): never; getFileName(): never; setAssetSource(): never; resolve(source: string, importer: string, options: { skipSelf: boolean; }): Promise<{ id: string; } | undefined>; resolveId(source: string, importer: string, options: { skipSelf: boolean; }): Promise; }; //# sourceMappingURL=createRollupPluginContextAdapter.d.ts.map