usesuper::*;/// Trait for types that can be converted into a reactive text `VirtualNode`.
////// Signals implement this to produce a text node that auto-updates.
pubtraitAsReactiveText{/// Converts this value into a `VirtualNode::Text` with reactive signal binding.
////// # Returns
////// - `VirtualNode` - A `VirtualNode` value.
fnas_reactive_text(&self)-> VirtualNode;}