declare const insertionPrefix = "insert:";
declare const insertionPrefixLength: number;
declare const eventHandlingPrefix = "@";
declare const eventHandlingPrefixLength: number;
declare const attrsPrefix = "attrs:";
declare const attrsPrefixLength: number;
declare function isInsertionInsctruction(instruction: string): boolean;
declare function isEventHandlingInstruction(instruction: string): boolean;
declare function isAttrsInstruction(instruction: string): boolean;
export { insertionPrefix, insertionPrefixLength, eventHandlingPrefix, eventHandlingPrefixLength, attrsPrefix, attrsPrefixLength, isInsertionInsctruction, isEventHandlingInstruction, isAttrsInstruction };
