/** * Marks the end of a string and the beginning of a value */ export declare const beginMarker = "_$bm_"; /** * Marks the end of a value and the beginning of a string */ export declare const endMarker = "_$em_"; export declare const attributeMarkerPrefix = "_$attr:"; export declare const eventMarkerPrefix = "_$evt:"; export declare enum NodePatcherRuleTypes { PATCH_NODE = 1, PATCH_ATTRIBUTE = 2, PATCH_EVENT = 3 } export interface TemplateData { templateString: string; template: HTMLTemplateElement; keyIndex: number; } export default function createTemplate(strings: TemplateStringsArray): TemplateData; //# sourceMappingURL=createTemplate.d.ts.map