import type { ComponentType } from '@/enums'; export interface IInjectedComponent { getType(): ComponentType; getElement(): HTMLElement; rerender(): void; destroy(): void; }