/**
 * Login command implementation
 */
import { Command } from 'commander';
/**
 * Run the login command
 * @param options.bunkerUrl Optional bunker URL, without it nostrconnect flow will be used
 * @returns void
 */
export declare function runLogin(options?: {
    bunkerUrl?: string;
}): Promise<void>;
/**
 * Register the login command with the CLI
 * @param program Commander program instance
 */
export declare function registerLoginCommand(program: Command): void;
