import { AbstractCommand } from "./AbstractCommand.js"; import type { Command } from "commander"; export declare class LoginCommand extends AbstractCommand { commandName: string; commandDescription: string; commandUseCases: string[]; isDeveloperCommand: boolean; initialize(program: Command): Command; execute(onSuccess?: () => void, exitOnError?: boolean): Promise; printDetailedHelp(): void; } //# sourceMappingURL=LoginCommand.d.ts.map