import { TextStyle } from '../types/modify-types';
export interface MultiTextParagraph {
    paragraph: {
        level?: number;
        bullet?: boolean;
        alignment?: 'l' | 'ctr' | 'r' | 'just';
        lineSpacing?: number;
        spaceBefore?: number;
        spaceAfter?: number;
        indent?: number;
        marginLeft?: number;
    };
    text?: string;
    style?: TextStyle;
    textRuns: {
        text: string;
        style?: TextStyle;
    }[];
}
