import type { Command } from "commander"; import type { CliContainer } from "../container.js"; export declare const logoutScopeDescription = "Danger: full reset. Removes stored credentials for every logged-in account and removes configuration for ALL configured agents. Requires --yes to run non-interactively; preview with --dry-run."; export declare function registerLogoutCommand(program: Command, container: CliContainer): void; export declare function executeLogout(program: Command, container: CliContainer): Promise;