/** * Credential management: /set, /unset, /keys, /info (multi-key per provider). */ import type { CommandInvocation } from "../../app/commands/command.js"; import type { AppServices } from "../bootstrap/composition-root.js"; export declare function handleInfo(services: AppServices, invocation: CommandInvocation): Promise; export declare function handleKeys(services: AppServices): Promise; export declare function handleSet(services: AppServices, invocation: CommandInvocation): Promise; export declare function handleUnset(services: AppServices, invocation: CommandInvocation): Promise;