import { JSONSchemaOperationConfig } from '@omnigraph/json-schema';
import { RAMLLoaderOptions } from './types';
/**
 * Generates the options for JSON Schema Loader
 * from RAML Loader options by extracting the JSON Schema references
 * from RAML API Document
 */
export declare function getJSONSchemaOptionsFromRAMLOptions({ ramlFilePath, cwd: ramlFileCwd, operations: extraOperations, baseUrl: forcedBaseUrl, fetch, schemaHeaders, selectQueryOrMutationField, }: RAMLLoaderOptions): Promise<{
    operations: JSONSchemaOperationConfig[];
    cwd: string;
    baseUrl: string;
    fetch?: WindowOrWorkerGlobalScope['fetch'];
}>;
