import { type GraphQLSchema } from 'graphql';
type Parameters = {
    query?: string;
    method?: Method;
    headers?: Record<string, string>;
};
export type Method = 'GET' | 'POST' | 'PUT' | 'DELETE';
export default function queryGraphQLSchema(url: string, parameters: Parameters): Promise<GraphQLSchema>;
export {};
