import { MathColor, MathRule, MathStroke } from "document-schema.js"; //#region src/mathml/radical.d.ts interface RadicalSign { readonly hook: MathStroke; readonly vinculum: MathRule; readonly widthPt: number; } declare function buildRadicalSign(originXPt: number, originYPt: number, signHeightPt: number, radicandWidthPt: number, ruleThicknessPt: number, color: MathColor): RadicalSign; //#endregion export { RadicalSign, buildRadicalSign };