import { NodeKind } from './node-kind'; import { Node } from './node'; export type MathDelimiter = '$' | '$$'; export declare class MathNode implements Node { readonly children: Node[]; readonly code: string; readonly kind = NodeKind.Math; readonly delimiter: string; constructor(code: string, delimiter: MathDelimiter); toMarkdown(): string; }