import type { GraphQLInputType } from 'graphql'; import { GraphQLList, GraphQLNonNull } from 'graphql'; export declare function getPossibleInputTypes( isListType: (type: unknown) => type is GraphQLList, isNonNullType: (type: unknown) => type is GraphQLNonNull, type: GraphQLInputType, ): Array;