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