///
import { DocumentNode } from "graphql";
import { IncomingMessage } from "http";
import { Neo4jGraphQL } from "../../../src";
export declare function compareParams({ params, expected, cypher, context, }: {
params: Record;
expected: Record;
cypher: string;
context: any;
}): void;
export declare function setTestEnvVars(envVars: string | undefined): void;
export declare function unsetTestEnvVars(envVars: string | undefined): void;
export declare function formatCypher(cypher: string): string;
export declare function formatParams(params: Record): string;
export declare function translateQuery(neoSchema: Neo4jGraphQL, query: DocumentNode, options: {
req?: IncomingMessage;
variableValues?: Record;
}): Promise<{
cypher: string;
params: Record;
}>;
//# sourceMappingURL=tck-test-utils.d.ts.map