import { type OpenApiInspectionReport } from "./inspect.js"; import type { OpenApiDocument } from "./generate.js"; import { type OpenApiSourceFileSystem } from "./spec-source.js"; export type OpenApiInspectionSource = OpenApiDocument | string | URL; export interface InspectOpenApiSourceOptions { cwd?: string; fetch?: typeof globalThis.fetch; fs?: OpenApiSourceFileSystem; } export declare function inspectOpenApiSource(source: OpenApiInspectionSource, options?: InspectOpenApiSourceOptions): Promise;