import { UITextStyle } from "../text-style/UITextStyle"; import type { UITextSpanConfig } from "./UITextSpan.Internal"; /** Text span with associated style */ export declare class UITextSpan { /** Text style */ style: UITextStyle; private textInternal; private dirtyInternal; /** @param config Text span configuration */ constructor(config: UITextSpanConfig); /** Text content */ get text(): string; set text(value: string); }