import { LeappCommand } from "../../leapp-command"; import { Config } from "@oclif/core/lib/config/config"; import { AwsNamedProfile } from "@noovolari/leapp-core/models/aws/aws-named-profile"; export default class EditNamedProfile extends LeappCommand { static description: string; static examples: string[]; static flags: { profileId: import("@oclif/core/lib/interfaces").OptionFlag; profileName: import("@oclif/core/lib/interfaces").OptionFlag; }; constructor(argv: string[], config: Config); run(): Promise; selectNamedProfile(): Promise; getProfileName(): Promise; editNamedProfile(id: string, newName: string): Promise; private editNamedProfileByFlags; private validateFlags; }