import { LegacyCommand, CommandOptions } from '../../legacy-command';
import { untagResult } from '../../../scope/component-ops/untag-component';
export default class Untag implements LegacyCommand {
    name: string;
    description: string;
    alias: string;
    opts: CommandOptions;
    loader: boolean;
    migration: boolean;
    action([id, version]: string[], { all, force }: {
        all: boolean | null | undefined;
        force: boolean | null | undefined;
    }): Promise<untagResult[]>;
    report(results: untagResult[]): string;
}
