/** * `tufa sign` command implementation. * * KERIpy correspondence: * - mirrors `keri.cli.commands.sign` * - preserves the operator mental model of "sign UTF-8 text or `@file` * contents with the current accepted keys for one local habitat" * * `keri-ts` difference: * - the command runs as one bounded Effection operation instead of a HIO doer * - store opening is delegated to the shared CLI context helper so encrypted * and compat-mode behavior stays consistent across CLI commands */ import { type Operation } from "effection"; /** * Sign one arbitrary text payload with the habitat's current accepted keys. * * Output compatibility: * - prints numbered indexed signatures as `1. ` * - the numbering is presentation only; `tufa verify` still expects raw * signature qb64 values, matching KLI */ export declare function signCommand(args: Record): Operation; //# sourceMappingURL=sign.d.ts.map