import type { OpenAPIDefinition } from '@redocly/openapi-docs'; import type { ContentProvider, ParsedContentRecord } from '../../content/content-provider.js'; import type { RedoclyConfig } from '../../config/schema'; export type BundledDefinition = { definition: OpenAPIDefinition; config: Partial[string]>; configAbsolutePath: string; relativePath: string; absolutePath: string; customOutputRelativeFile?: string; markdocChunks: MarkdocChunk[]; hash: string; }; export type MarkdocChunk = { node: Record; pointer: string; markdown: string; relativePath: string; key: string; }; export declare function loadDefinition(content: ParsedContentRecord, config: Partial, contentDir: string, configDir: string, apiPathForConfig: string, contentProvider: ContentProvider): Promise; //# sourceMappingURL=load-definition.d.ts.map