/** * Extract the body paragraphs of a WordprocessingML document as a flat array of * plain text — one string per paragraph, runs concatenated. A backwards-compatible * convenience over {@link parseDocument} for tests/tools that want only text; * table contents and all formatting are dropped. * * @param documentXml The raw `word/document.xml` bytes. * @returns One joined run-text string per body paragraph, in document order. */ export declare function extractParagraphs(documentXml: Uint8Array): Array;