import { Command } from "commander";
/**
 * Options for the whoami command
 */
interface WhoamiOptions {
    debug?: boolean;
}
/**
 * Execute the whoami command
 *
 * @param options Command line options
 */
export declare function executeWhoamiCommand(options: WhoamiOptions): Promise<void>;
/**
 * Register the whoami command with the CLI
 *
 * @param program The commander program
 */
export declare function registerWhoamiCommand(program: Command): void;
export {};
