import type { AbsSingularQuery, JsonPathQuery, RelQuery, RelSingularQuery } from "../../parser/ast.ts"; import type { JsonValue } from "../results.ts"; import type { Callback, Context } from "../types.ts"; export default function visitQuery(ctx: Context, root: JsonValue, input: JsonValue, node: JsonPathQuery | RelQuery | RelSingularQuery | AbsSingularQuery, cb: Callback): void;