import { type NormalizedProblem } from '@redocly/openapi-core'; import type { ContentFs } from '../../../../fs/content-fs.js'; type Opts = { schemaOrRef: unknown; fs: ContentFs; filePath: string; }; export declare function dereferenceJsonSchemaRefs({ schemaOrRef, filePath, fs }: Opts): Promise<{ schema: unknown; oas: unknown; problems: NormalizedProblem[]; } | undefined>; export {}; //# sourceMappingURL=dereference-json-schema-refs.d.ts.map