import { LeappCommand } from "../../leapp-command"; import { Config } from "@oclif/core/lib/config/config"; export default class TeamLogin extends LeappCommand { static description: string; static examples: string[]; static flags: {}; constructor(argv: string[], config: Config); run(): Promise; insertUserEmail(): Promise; insertUserPassword(): Promise; login(): Promise; }