import { ObservableValue } from '../shared-state/index.js'; import { Formatter } from '../formatters/core.js'; declare type Content = T | ObservableValue; declare class Props { content: Content; formatter: Formatter; } export declare const Text: ((content: Content, formatter?: Formatter) => import("../builder.js").Builder) & { View: import("../view.js").Clazz; }; export {};