import { DynamicValue, Listener, Unsubscriber } from "./DynamicValue";
import { X2jOptionsOptional } from "fast-xml-parser";
/**
* A [[DynamicValue]] reducer returning the input XML parsed
*
* @example
* ```javascript
* new XMLValue(new TextValue("test")).onValue(parsed=>
* parsed.root === "test" //true
* )
* ```
*/
export declare class XMLValue implements DynamicValue