import { type RegisteredTool } from '../../server.ts'; /** * `get_verification_result` — check a session's status and, once a result has * been submitted, pull the stored payload(s) and verify locally. Auth is the * org token; delivery is org-scoped. Each stored payload is either the * plaintext signed JWS (when the org's encryption is off) or an ECIES * ciphertext that we decrypt here with the optional eth key * (`RECLAIM_DECRYPT_KEY` or the `reclaim-decrypt.key` hex file). The Builder * only ever relays the payload — decryption, when needed, happens here. */ export declare function verificationResultTool(): RegisteredTool;