import pg from 'pg';
import type { Environment } from './shared/types/index.js';
export declare function createGraphQLApp(env: Environment, pool: pg.Pool): Promise<{
application: import("graphql-modules").Application;
transformedSchema: import("graphql").GraphQLSchema;
}>;