import { type DocumentParagraphIndent } from './work-document-paragraph-formatting'; import { type DocxParagraphStyleSource } from './work-docx-paragraph-styles'; import { type DocxTableStyleSource } from './work-docx-table-styles'; export interface ImportedDocxParagraphIndentMarker { marker: string; indent: DocumentParagraphIndent; } export interface ImportedDocxParagraphIndentMarkers { paragraphs: ImportedDocxParagraphIndentMarker[]; } export declare function markDocxParagraphIndents(document: Document, styleSource?: DocxParagraphStyleSource, tableStyleSource?: DocxTableStyleSource): ImportedDocxParagraphIndentMarkers; export declare function applyImportedDocxParagraphIndentMarkers(document: Document, markers: ImportedDocxParagraphIndentMarkers): void; export declare function hasImportedDocxParagraphIndentMarkers(markers: ImportedDocxParagraphIndentMarkers): boolean; export declare function resolveDocxParagraphIndent(propertySources: readonly Element[]): DocumentParagraphIndent;