import { GraphQLScalarType } from "graphql"; import { RequiredType, GQLObjectType, EnumType, UnionType, NullableType } from ".."; import { ClassType } from "../interfaces"; export declare type FieldType = typeof Boolean | typeof Number | typeof String | typeof Date | GraphQLScalarType | GQLObjectType | EnumType | UnionType | FieldType[] | ClassType | RequiredType | NullableType;