import Command, { flags } from '../base';
export default class Whoami extends Command {
    static description: string;
    static flags: flags.Input<any>;
    run(): Promise<void>;
}
