import type { ConstructiveOptions } from '@constructive-io/graphql-types'; import type { ServerInfo, ServerOptions } from './types'; /** * Create a single-tenant dev test server (no scoped routing, no database id). * * Wraps `@constructive-io/graphql-dev-server` for suites that exercise a plain * PostGraphile surface against one seeded database. */ export declare const createDevTestServer: (opts: ConstructiveOptions, serverOpts?: ServerOptions) => Promise; /** * Create a test server for SuperTest testing * * This uses the Server class from @constructive-io/graphql-server directly, * which includes all the standard middleware (CORS, authentication, GraphQL, etc.) */ export declare const createTestServer: (opts: ConstructiveOptions, serverOpts?: ServerOptions) => Promise;