/** * `tufa rotate` command implementation. * * KERIpy correspondence: * - mirrors the single-sig `kli rotate` command surface and merge semantics * - keeps the CLI/output mental model aligned while preserving explicit * TypeScript-native orchestration instead of KERIpy's doer stack * * Current scope: * - local rotation event construction and acceptance * - witness replacement/cut/add math plus witness-auth/receipt convergence * - KLI-compatible success output */ import { type Operation } from "effection"; /** * Rotate one local habitat and print the newly accepted public key state. * * Maintainer boundary: * - CLI concerns stop at option merge/validation and success output * - habitat/key-state mutation lives in `Hab.rotate(...)` */ export declare function rotateCommand(args: Record): Operation; //# sourceMappingURL=rotate.d.ts.map