import type { ApiItem, CodeSampleSource } from '@redocly/api-docs'; import type { ItemMatch } from './find-api-item.js'; export type ReplayOperationSourceOptions = { mimeType?: string; exampleKey?: string; }; type ExampleStoreLike = Record; /** * Builds a method/path → {@link CodeSampleSource} map from code-sample panels across the nav tree, * optionally replacing one operation's source with a narrowed copy for replay. * * @param items - Docs navigation items. * @param match - Which operation to narrow when options are set. * @param options - When empty, returns the base map unchanged. */ export declare function buildReplayOperationSourceMap(items: ApiItem[], match: ItemMatch, options?: ReplayOperationSourceOptions, exampleStore?: ExampleStoreLike): Map; export {}; //# sourceMappingURL=build-replay-operation-source-map.d.ts.map