import type { ToolResult } from "./tools-base.js"; export declare const VRP_PROTOCOL = "vacation-rental-protocol"; export declare const VRP_PROTOCOL_VERSION = "0.1"; export declare const VRP_JWS_ALG = "EdDSA"; export declare const VRP_FETCH_TIMEOUT_MS = 8000; export declare const VRP_TOOL_NAMES: readonly ["verify_vacation_rental_node", "get_verified_stay_offer"]; type JsonRecord = Record; export declare function isVrpToolName(name: string): boolean; export declare function verifyCompactJws(jws: string, jwks: JsonRecord): { header: JsonRecord; payload: JsonRecord; kid: string | null; }; export declare function executeVrpTool(name: string, args: Record): Promise; export {};