import { GraphQLOutputType, GraphQLNamedType, GraphQLNonNull, GraphQLList } from 'graphql'; import { Types } from './types.cjs'; export declare function mergeOutputs(content: Types.PluginOutput | Array): string; export declare function isWrapperType(t: GraphQLOutputType): t is GraphQLNonNull | GraphQLList; export declare function getBaseType(type: GraphQLOutputType): GraphQLNamedType; export declare function removeNonNullWrapper(type: GraphQLOutputType): GraphQLOutputType;