import { IParagraphStylePropertiesOptions, IRunStylePropertiesOptions } from "../../../file/paragraph"; import { Style } from "./style"; export interface IBaseParagraphStyleOptions { readonly basedOn?: string; readonly next?: string; readonly quickFormat?: boolean; readonly link?: string; readonly semiHidden?: boolean; readonly uiPriority?: number; readonly unhideWhenUsed?: boolean; readonly paragraph?: IParagraphStylePropertiesOptions; readonly run?: IRunStylePropertiesOptions; } export interface IParagraphStyleOptions extends IBaseParagraphStyleOptions { readonly id: string; readonly name?: string; } export declare class StyleForParagraph extends Style { private readonly paragraphProperties; private readonly runProperties; constructor(options: IParagraphStyleOptions); }