import type { InlineMath, Math } from 'myst-spec'; import type { NodeRenderer } from '@myst-theme/providers'; type MathLike = (InlineMath | Math) & { error?: boolean; message?: string; html?: string; }; declare const MATH_RENDERERS: { math: NodeRenderer; inlineMath: NodeRenderer; }; export default MATH_RENDERERS; //# sourceMappingURL=math.d.ts.map