import type { LambdaNode } from '../../builtin/specialExpressions/functions'; import { NodeTypes } from '../../constants/constants'; import type { ParserContext } from '../ParserContext'; export type MacroPayload = LambdaNode[1]; export type MacroNode = [typeof NodeTypes.Macro, MacroPayload, number]; export declare function parseMacro(ctx: ParserContext): MacroNode;