import { IScope } from "../page/interfaces/scope.interface"; import { ElementStructure } from "./element-structure"; export declare class RenderHelper { static isPureElement(tag: string | HTMLElement): boolean; static removeAllChildrenOfElement(element: Element): void; static resolveInterpolationIfHave(value: any, scope: IScope): any; static resolveDefaultAttribute(element: HTMLElement, name: string, value: string, scope: IScope): void; static buildStructureFromTemplate(htmlTemplate: string, scope: IScope, rootTagName: string): ElementStructure; }