import { DynamicValue, Listener, Unsubscriber } from "./DynamicValue"; /** * A [[DynamicValue]] reducer returning the truthiness of the input * * @example * ```javascript * new BooleanizedValue(new TextValue("")).onValue(value=> * value //false * ) * ``` */ export declare class BooleanizedValue 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; }