import { GraphQLSchema } from "graphql"; import { DiagnosticsWithoutLocationResult } from "../utils/DiagnosticError.js"; import { GratsConfig } from "../gratsConfig.js"; /** * Ensure that all semantically non-nullable fields on an interface are also * semantically non-nullable on all implementors. */ export declare function validateSemanticNullability(schema: GraphQLSchema, config: GratsConfig): DiagnosticsWithoutLocationResult;