export interface VNode { tag: string | object | null; props: Record; children: (VNode | string)[]; } export declare function compileTemplate(html: string, scopeId?: string): string; //# sourceMappingURL=template-compiler.d.ts.map