declare class Context { private created; private deleted; readonly node: Element | DocumentFragment; constructor(node: Element | DocumentFragment); markCreated(node: Node): void; markDeleted(node: Node): void; notifyChanges(): void; } export { Context };