import { ObservableReactValue } from '../utils/observers'; export declare class MessageText { /** * Text of message that supports "observation", should you need to update the component immediately upon variable modification, perfect for React.useSyncExternalStore. */ readonly observableText: ObservableReactValue; readonly modelId: string; constructor(text: string); get text(): string; set text(value: string); }