import type { ApiItem, ResponseCodeItem } from '@redocly/api-docs'; import type { ItemMatch } from './find-api-item.js'; export type ResponseSamples = { responseCodes: ResponseCodeItem[]; schemaId?: string; }; /** * Locates response example metadata for the operation matched by `pointer` or `sourceId`. * * @param items - Docs navigation items. * @param match - Operation identity in the nav tree. * @returns Response codes (and optional schema id), or `undefined` if not found. */ export declare function findResponseSamples(items: ApiItem[], match: ItemMatch): ResponseSamples | undefined; //# sourceMappingURL=find-openapi-response-samples.d.ts.map