import { LeappCommand } from "../../leapp-command"; import { Config } from "@oclif/core/lib/config/config"; import { IdpUrl } from "@noovolari/leapp-core/models/idp-url"; export default class EditIdpUrl extends LeappCommand { static description: string; static examples: string[]; static flags: { idpUrlId: import("@oclif/core/lib/interfaces").OptionFlag; idpUrl: import("@oclif/core/lib/interfaces").OptionFlag; }; constructor(argv: string[], config: Config); run(): Promise; selectIdpUrl(): Promise; getNewIdpUrl(): Promise; editIdpUrl(id: string | undefined, newIdpUrl: string | undefined): Promise; validateMyFlags(flags: any): boolean; }