import type { TestExpr } from "../../parser/ast.ts"; import type { Context, StackItem } from "../types.ts"; export default function evalTestExpr(ctx: Context, item: StackItem, node: TestExpr): boolean;