import { GraphQLArgument, GraphQLField, GraphQLInputField, GraphQLEnumValue } from 'graphql'; export interface IJSDocTag { tag: string; value: string; } export interface IFieldDocumentation { description?: string; tags: IJSDocTag[]; } export declare type BuildDocumentation = (field: GraphQLField | GraphQLInputField | GraphQLEnumValue | GraphQLArgument) => IFieldDocumentation; export declare const getDocTags: null; export declare const buildDocumentation: BuildDocumentation;