import { DynamicValue, Listener, Unsubscriber } from "./DynamicValue"; /** * A [[DynamicValue]] reducer returning the stringified version of the input * * @example * ```javascript * new StringifiedValue(new NumberValue(1)).onValue(value=> * value === "1" //true * ) * ``` */ export declare class StringifiedValue implements DynamicValue { __variant__: string; input: DynamicValue; name: string | void; constructor(input: DynamicValue, name?: string); onValue(listener: Listener): Unsubscriber; getValue(): Promise; static fromJSON(json: { input: any; name?: string; }): any; }