/** * `tufa verify` command implementation. * * KERIpy correspondence: * - mirrors `keri.cli.commands.verify` * - verifies indexed signatures against the locally accepted key state for the * supplied prefix rather than consulting remote state on demand * * Maintainer implication: * - signature validity after a remote rotation depends on whether local state * has already been updated, which is why the interop proof must include the * pre-query failure and post-query success cases */ import { type Operation } from "effection"; /** * Verify one or more indexed signatures against locally accepted key state. * * KLI/KERIpy compatibility: * - `--signature` values are raw qb64 signatures, not the numbered lines from * `tufa sign` * - each `Siger` is rebound to `kever.verfers[index]` before verification */ export declare function verifyCommand(args: Record): Operation; //# sourceMappingURL=verify.d.ts.map