import type { OpenApiDocument } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'; /** * Among the selected Postman request path keys, returns keys whose requests map to the same * OpenAPI path + HTTP method as another selected request or an existing operation in the base document. * * @param itemRoot - Postman collection `item` array * @param selectedPathKeys - Selected Postman request path keys (JSON index paths) * @param baseDocument - Optional existing OpenAPI document to check for collisions */ export declare const getCollidingPostmanRequestPathKeys: (itemRoot: unknown, selectedPathKeys: readonly string[], baseDocument?: OpenApiDocument) => string[]; //# sourceMappingURL=postman-request-collisions.d.ts.map