import { HttpMethod } from '../types/endpoint.js';
import { OperationObject, RefUuidMap, UUIDObjectHashMap, HashedNodeMap, UUID } from './types/index.js';
export declare const mapOperation: ({ operation, refUuidMap, uuidObjectHashMap, hashedNodeMap, uuid, method, isWebhook, }: {
    operation: OperationObject;
    refUuidMap: RefUuidMap;
    uuidObjectHashMap: UUIDObjectHashMap;
    hashedNodeMap: HashedNodeMap;
    uuid: UUID;
    method: HttpMethod;
    isWebhook?: boolean;
}) => void;
