import type { Any } from '../../interface'; import type { AstNode, BindingTarget } from '../../parser/types'; import type { NodeTypes } from '../../constants/constants'; import type { BuiltinSpecialExpression } from '../interface'; export type MatchCase = [BindingTarget, AstNode, AstNode | undefined]; export type MatchNode = [typeof NodeTypes.Match, [AstNode, MatchCase[]], number]; export declare const matchSpecialExpression: BuiltinSpecialExpression;