import { Command } from "commander";
/**
 * Options for the switch user command
 */
interface SwitchUserOptions {
    debug?: boolean;
}
/**
 * Execute the switch user command
 *
 * @param pubkey Public key of the user to switch to
 * @param options Command line options
 */
export declare function executeSwitchUserCommand(pubkey: string, options: SwitchUserOptions): Promise<void>;
/**
 * Register the switch user command with the CLI
 *
 * @param program The commander program
 */
export declare function registerSwitchCommand(program: Command): void;
export {};
