import { GratsConfig } from "../gratsConfig.js"; import { Metadata } from "../metadata.js"; import { GraphQLSchema } from "graphql"; /** * EXPERIMENTAL! * * Codegen for a GraphQL Tools style resolver map. This is an alternative to * generating a GraphQLSchema directly. This is mostly provided as an example * and the goal is that eventually it should be possible to generate this output * in userland. * * https://the-guild.dev/graphql/tools/docs/resolvers#resolver-map */ export declare function resolverMapCodegen(schema: GraphQLSchema, resolvers: Metadata, config: GratsConfig, destination: string): string;