/** * ECMA-376 preset text-warp geometry data. * * Generated from the standard's accompanying * OfficeOpenXML-DrawingMLGeometries.zip / presetTextWarpDefinitions.xml. * Do not hand-edit; regenerate through the evidence-plan script. */ export type PresetTextWarpCommand = { kind: 'moveTo' | 'lnTo' | 'quadBezTo' | 'cubicBezTo'; points: Array<{ x: string; y: string; }>; } | { kind: 'arc'; wR: string; hR: string; stAng: string; swAng: string; }; export type PresetTextWarpDefinition = { adjustments: Array<{ name: string; fmla: string; }>; guides: Array<{ name: string; fmla: string; }>; paths: PresetTextWarpCommand[][]; }; export declare const PRESET_TEXT_WARP_DEFINITIONS: Record;