/**
 * Login command implementation
 */
import { Command } from 'commander';
/**
 * Run the logout command
 * @returns void
 */
export declare function runLogout(options?: {
    bunkerUrl?: string;
}): Promise<void>;
/**
 * Register the logout command with the CLI
 * @param program Commander program instance
 */
export declare function registerLogoutCommand(program: Command): void;
