import { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types';
import { SchemaGraphData } from './types/index.js';
export declare const openApiToSchemaGraph: ({ spec, filename, originalFileLocation, }: {
    spec: OpenAPIV3.Document | OpenAPIV3_1.Document;
    filename: string;
    originalFileLocation?: string;
}) => SchemaGraphData;
