import type { OpenApiApi } from '../openapi-types'; import type { OpenAPIV3 } from 'openapi-types'; import type { OpenApiDocumentRefs } from './refs'; import type { ParserOptions } from './options'; /** * Collect and parse all APIs of an `OpenAPIV3.Document`. * @param document - The OpenAPI document to parse. * @param refs - Object representing cross references throughout the document. * @param options - Parser options. * @returns A flat list of parsed APIs. * @internal */ export declare function parseApis(document: OpenAPIV3.Document, refs: OpenApiDocumentRefs, options: ParserOptions): OpenApiApi[];