import type { OpenApiDocument } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'; /** * Extracts all path + method merge keys from an OpenAPI document. * Returns a Set of merge keys in the format: `${method}\0${path}` */ export declare const getOpenApiMergeKeys: (document: OpenApiDocument) => Set; /** * Resolves merge key and server usage for a Postman collection item that has a `request` field. */ export declare const getPostmanMergeKeys: (item: unknown) => string | undefined; //# sourceMappingURL=get-merge-key.d.ts.map