import { type GraphQLSchema } from 'graphql';
export type OutputFormat = 'sdl' | 'introspection';
export declare function convert(schema: GraphQLSchema, format: OutputFormat): string;
