import { GraphQLScalarType } from "graphql"; import { InputType, EnumType, RequiredType, NullableType, ClassType } from ".."; export declare type InputFieldType = typeof Boolean | typeof Number | typeof String | typeof Date | GraphQLScalarType | InputType | EnumType | InputFieldType[] | ClassType | RequiredType | NullableType;