import { ConfigurationObjectResolve } from '@mf/core'; import { ContainersService } from '../services/containers.service'; import { ElementUrlsOverriderService } from '../services/urls-overrider.service'; import { ParentComponentRef, RendererRef } from './interface'; /** * */ export declare class CustomElementRendererRef implements RendererRef { private readonly containersService; private readonly elementUrlsOverriderService; constructor(containersService: ContainersService, elementUrlsOverriderService: ElementUrlsOverriderService); /** * */ render(resolvedConfiguration: ConfigurationObjectResolve, componentRef: ParentComponentRef): HTMLElement; /** * */ destroy(element: HTMLElement): void; }