import { type DocxParagraphStyleSource } from './work-docx-paragraph-styles'; import { type DocxTableStyleSource } from './work-docx-table-styles'; export type ImportedDocxParagraphAlignment = 'left' | 'center' | 'right' | 'justify' | 'distribute'; export interface ImportedDocxParagraphAlignmentMarker { marker: string; alignment: ImportedDocxParagraphAlignment; } export interface ImportedDocxParagraphAlignmentMarkers { paragraphs: ImportedDocxParagraphAlignmentMarker[]; } export declare function markDocxParagraphAlignments(document: Document, styleSource?: DocxParagraphStyleSource, tableStyleSource?: DocxTableStyleSource): ImportedDocxParagraphAlignmentMarkers; export declare function applyImportedDocxParagraphAlignmentMarkers(document: Document, markers: ImportedDocxParagraphAlignmentMarkers): void; export declare function hasImportedDocxParagraphAlignmentMarkers(markers: ImportedDocxParagraphAlignmentMarkers): boolean; export declare function resolveDocxParagraphAlignment(propertySources: readonly Element[]): ImportedDocxParagraphAlignment | null;