import type { IExecutableSchemaDefinition } from '@graphql-tools/schema'; import type { GraphQLSchema } from 'graphql'; import type { CedarDirective } from './plugins/useRedwoodDirective.js'; import type { CedarSubscription } from './subscriptions/makeSubscriptions.js'; import type { ServicesGlobImports, SdlGlobImports, CedarScalarConfig } from './types.js'; export declare const makeMergedSchema: ({ sdls, services, schemaOptions, directives, subscriptions, includeScalars, }: { sdls: SdlGlobImports; services: ServicesGlobImports; directives: CedarDirective[]; subscriptions: CedarSubscription[]; includeScalars?: CedarScalarConfig; /** * A list of options passed to [makeExecutableSchema](https://www.graphql-tools.com/docs/generate-schema/#makeexecutableschemaoptions). */ schemaOptions?: Partial; }) => GraphQLSchema; //# sourceMappingURL=makeMergedSchema.d.ts.map