import { GraphQLSchema } from 'graphql'; import { AugmentConfig } from './gql-utils'; export declare const augmentResolvers: ({ resolvers, config, }: { resolvers: any; config: AugmentConfig; }) => any; export declare const makeAugmentedSchema: (options: GraphQLSchema | { schema: GraphQLSchema; resolvers?: any; }, config?: AugmentConfig) => GraphQLSchema;