import type { ITaskContext, ITaskResult } from '../../../abstraction/index.js'; import { ComponentTask } from './component-task.js'; export declare class ComponentModuleBundleTask extends ComponentTask { private _bundler; constructor(); get id(): string; protected bundleScriptAsync(context: ITaskContext): Promise; protected bundleStyleAsync(context: ITaskContext): Promise; private copyAndCompileComponentStyle; private bundleComponentScriptIndexAsync; }