import { type GraphQLSchema } from 'graphql';
export type Parameters = {
    globPaths: string[];
};
export declare function parseGraphqlSchema(options: Parameters): Promise<GraphQLSchema>;
