import type { LambdaNode } from '../../builtin/specialExpressions/functions'; import type { ParserContext } from '../ParserContext'; export declare function parseLambdaFunction(ctx: ParserContext): LambdaNode | null; export declare function parseShorthandLambdaFunction(ctx: ParserContext): LambdaNode;