import { MathBox, MathLayoutItem } from "document-schema.js"; //#region src/mathml/compose.d.ts declare const EMPTY_BOX: MathBox; declare function shiftItems(items: readonly MathLayoutItem[], dxPt: number, dyPt: number): MathLayoutItem[]; declare function placeChild(child: MathBox, dxPt: number, baselineOffsetPt: number, overallAscentPt: number): readonly MathLayoutItem[]; declare function concatBoxesHorizontally(boxes: readonly MathBox[], gapsPt?: readonly number[]): MathBox; //#endregion export { EMPTY_BOX, concatBoxesHorizontally, placeChild, shiftItems };