import { AstChild, ChildType } from 'xml-template-literal'; import type { DynamicSegments } from "../types/DynamicSegments"; import type { RendererConfig } from "../types/RendererConfig"; export declare const renderChild: (config: RendererConfig, ast: { kind: import("xml-template-literal").AstKind.Child; type: ChildType.Node; tag: string; children: AstChild>[]; attributes: import("xml-template-literal").AstAttribute>[]; } & { type: ChildType.Node; }) => RenderTarget;