import { Widget, WidgetConfig } from "./Widget"; import { NumberProp, StringProp } from "./Prop"; export interface TextConfig extends WidgetConfig { /** The value to be rendered as text. */ value?: StringProp | NumberProp; /** Template string for the text value. */ tpl?: string; /** Expression for the text value. */ expr?: string; /** Binding path for the text value. */ bind?: string; } export declare class Text extends Widget { value?: any; tpl?: string; expr?: any; bind?: string; constructor(config?: TextConfig); init(): void; declareData(...args: any[]): void; render(context: any, { data }: any, key: string): any; } //# sourceMappingURL=Text.d.ts.map