import type { Plugin } from 'rollup'; import { type OutputFormat } from '../schema/convert'; export type PluginOptions = { /** * The paths to the GraphQL SDL files. Glob syntax may be used. */ paths: string[]; /** * Indicates the target path for the JSON Schema resulting from the Query. * * @default src/_schema.json */ target?: string; /** * Whether the output format should be a GraphQL SDL file or an introspection JSON file. * * Defaults to introspection JSON. */ format?: OutputFormat; }; export declare function parseSchema(options: PluginOptions): Promise; export default function parseGraphQLSchema(options: PluginOptions): Plugin;