import { LeappCommand } from "../../leapp-command"; import { Config } from "@oclif/core/lib/config/config"; import { Session } from "@noovolari/leapp-core/models/session"; export default class ChangeSessionProfile extends LeappCommand { static description: string; static examples: string[]; static flags: { sessionId: import("@oclif/core/lib/interfaces").OptionFlag; profileId: import("@oclif/core/lib/interfaces").OptionFlag; }; constructor(argv: string[], config: Config); run(): Promise; selectSession(): Promise; selectProfile(session: Session): Promise; changeSessionProfile(session: Session, newProfileId: string): Promise; private validateFlags; }