import { k as ExprNode } from "./shared-C7P2VCv4.js"; /** * Converts a GROQ AST node back into a GROQ query string. * * **Limitation**: This function cannot preserve parameter references. When a query * is parsed with parameters (e.g., `parse(query, {params: {name: "value"}})`), * the parameters are resolved to their values in the AST. Unparsing such a tree * will produce literals instead of parameter references (e.g., `"value"` instead * of `$name`). This means `parse(unparse(tree))` will produce a different AST * when the original tree contained resolved parameters. */ declare function unparse(node: ExprNode): string; export { unparse as t }; //# sourceMappingURL=unparse-CEkIwVh_.d.ts.map