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