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