import * as TextStyle from "../styles/text-style.js"; export interface TextRun { readonly type: "TextRun"; readonly styleName: string; readonly nestedStyleNames?: ReadonlyArray; readonly text: string; readonly style?: TextStyle.TextStyle; } export interface TextRunProps { readonly styleName?: string; readonly text: string; readonly style?: TextStyle.TextStyle; } export declare function create(props: TextRunProps): TextRun; //# sourceMappingURL=text-run.d.ts.map