import { Options } from "./types.cjs"; import { GraphQLSchema } from "@power-plant/graphql-schema"; //#region src/input.d.ts /** * Loads a GraphQL schema from the configured pointer using the same loaders and defaults as GraphQL Code Generator. * * @see https://the-guild.dev/graphql/codegen/docs/advanced/programmatic-usage * @see https://the-guild.dev/graphql/tools/docs/documents-loading * * @param options - The options for the input. * @returns A loaded {@link GraphQLSchema} instance. */ declare function input(options: Options): Promise; //#endregion export { input }; //# sourceMappingURL=input.d.cts.map