import type { DocumentParagraphDirection } from './work-document-paragraph-formatting'; import { type DocxParagraphStyleSource } from './work-docx-paragraph-styles'; import { type DocxTableStyleSource } from './work-docx-table-styles'; export interface ImportedDocxParagraphDirectionMarker { marker: string; direction: DocumentParagraphDirection; } export interface ImportedDocxParagraphDirectionMarkers { paragraphs: ImportedDocxParagraphDirectionMarker[]; } export declare function markDocxParagraphDirections(document: Document, styleSource?: DocxParagraphStyleSource, tableStyleSource?: DocxTableStyleSource): ImportedDocxParagraphDirectionMarkers; export declare function applyImportedDocxParagraphDirectionMarkers(document: Document, markers: ImportedDocxParagraphDirectionMarkers): void; export declare function hasImportedDocxParagraphDirectionMarkers(markers: ImportedDocxParagraphDirectionMarkers): boolean; export declare function resolveDocxParagraphDirection(propertySources: readonly Element[]): DocumentParagraphDirection | null;