import type { IComponentPlugin, IComponentPluginService } from './interface'; import type { IComponent } from '../../component/interface'; import { BasePluginService } from '../base/base-plugin-service'; export declare class ComponentPluginService extends BasePluginService implements IComponentPluginService { component: IComponent; constructor(component: IComponent); releaseAll(): void; }