import { GraphQLSchema } from 'graphql';
/**
 * Removes all directive definitions and directive usages from a GraphQL schema string
 * and returns a built GraphQLSchema.
 *
 * @param schemaString - The GraphQL schema string to process
 * @returns A built GraphQLSchema with all directives removed
 */
export declare function buildSchemaWithoutDirectives(schemaString: string): GraphQLSchema;
