import { type Element } from '@mdgate/containers'; import { type Block } from '@mdgate/document'; /** A chart part as blocks: bold title paragraph plus a categories × series table. */ export declare function chartBlocks(root: Element): Block[]; /** A SmartArt data part as a bullet list of its text points in order. */ export declare function diagramBlocks(root: Element): Block[]; /** Text runs inside DrawingML rich text (`a:p`/`a:r`/`a:t`), joined. */ export declare function drawingText(elem: Element): string;