import { Text as IText } from "../response.js"; import { Component } from "../../components/component.js"; export { IText }; export declare class TextBaseImpl extends Component { style(style: IText['style']): this; locale(locale: IText['locale']): this; /** * The value to explain a different semantics */ semanticsLabel(semanticsLabel: IText['semanticsLabel']): this; /** * Whether the assistive technologies should spell out this text character by character */ spellOut(spellOut: IText['spellOut']): this; /** * The text alignment */ textAlign(textAlign: IText['textAlign']): this; /** * Additional texts to add after this text. */ children(children: IText['children']): this; }