import { GraphQLNamedType, GraphQLEnumValue, GraphQLField, GraphQLArgument, GraphQLInputField } from 'graphql'; declare const comment: (comment: { text?: string | null; deprecated?: string | null; }) => string; declare const typeComment: (type: GraphQLNamedType) => string; declare const fieldComment: (field: GraphQLEnumValue | GraphQLField) => string; declare const argumentComment: (arg: GraphQLArgument | GraphQLInputField) => string; export { argumentComment, comment, fieldComment, typeComment };