import Command from '../base-command';
export default class WhoAmI extends Command {
    static description: string;
    static flags: {
        registry: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
        token: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
    };
    run(): Promise<void>;
}
