import { type GraphqlGatewayName } from "../transformers/transformer-chain"; export type BuildSchemaOptions = { readonly inputFile: string; readonly outputFile: string; readonly server: GraphqlGatewayName; }; export declare const buildGraphqlSchema: (server: GraphqlGatewayName, inputSdl: string) => string; export declare const buildSchemaFile: ({ inputFile, outputFile, server }: BuildSchemaOptions) => Promise;