import { ObserverOptionsInternal, WrapperMiddleware } from '@jiotranslate/core-beta'; export declare function NodeHandler(options: ObserverOptionsInternal, wrapper: WrapperMiddleware, dynamicScanningEnabled: boolean): Readonly<{ handleAttributes(node: Node, includeChild?: boolean): Attr[]; handleChildList(node: Node[]): (Attr | Text)[]; handleText(node: Node): Text[]; }>; export type NodeHandlerInstance = ReturnType;