/** * `tufa interact` command implementation. * * KERIpy correspondence: * - mirrors the single-sig `kli interact` command surface * - creates one local `ixn`, accepts it locally, then optionally converges * witness receipts using the same receipting helpers already shared by * `incept` and `rotate` */ import { type Operation } from "effection"; /** * Create one local interaction event and optionally converge witness receipts. * * Maintainer boundary: * - CLI concerns stop at argument parsing, witness-auth capture, and success * output * - interaction event authoring and local acceptance live in `Hab.interact(...)` */ export declare function interactCommand(args: Record): Operation; //# sourceMappingURL=interact.d.ts.map