import { type DocumentParagraphSpacing } from './work-document-paragraph-formatting'; import { type DocxParagraphStyleSource } from './work-docx-paragraph-styles'; import { type DocxTableStyleSource } from './work-docx-table-styles'; export interface ImportedDocxParagraphSpacingMarker { marker: string; spacing: Partial; } export interface ImportedDocxParagraphSpacingMarkers { paragraphs: ImportedDocxParagraphSpacingMarker[]; } export declare function markDocxParagraphSpacing(document: Document, styleSource?: DocxParagraphStyleSource, tableStyleSource?: DocxTableStyleSource): ImportedDocxParagraphSpacingMarkers; export declare function applyImportedDocxParagraphSpacingMarkers(document: Document, markers: ImportedDocxParagraphSpacingMarkers): void; export declare function hasImportedDocxParagraphSpacingMarkers(markers: ImportedDocxParagraphSpacingMarkers): boolean; export declare function resolveDocxParagraphSpacing(propertySources: readonly Element[]): Partial;