import type { GraphQLNamedType } from './definition'; import { GraphQLScalarType } from './definition'; /** * Maximum possible Int value as per GraphQL Spec (32-bit signed integer). * n.b. This differs from JavaScript's numbers that are IEEE 754 doubles safe up-to 2^53 - 1 * */ export declare const GRAPHQL_MAX_INT = 2147483647; /** * Minimum possible Int value as per GraphQL Spec (32-bit signed integer). * n.b. This differs from JavaScript's numbers that are IEEE 754 doubles safe starting at -(2^53 - 1) * */ export declare const GRAPHQL_MIN_INT = -2147483648; export declare const GraphQLInt: GraphQLScalarType; export declare const GraphQLFloat: GraphQLScalarType; export declare const GraphQLString: GraphQLScalarType; export declare const GraphQLBoolean: GraphQLScalarType; export declare const GraphQLID: GraphQLScalarType; export declare const specifiedScalarTypes: ReadonlyArray; export declare function isSpecifiedScalarType(type: GraphQLNamedType): boolean;