import supertest from 'supertest'; import type { ServerInfo, GraphQLQueryFn } from './types'; /** * Create a SuperTest agent for the given server */ export declare const createSuperTestAgent: (server: ServerInfo) => supertest.Agent; /** * Create a GraphQL query function */ export declare const createQueryFn: (agent: supertest.Agent) => GraphQLQueryFn;