import { Command } from 'commander';
import type { Action } from '@dynatrace/openkit-js';
import type { UpdateReference } from '../update/types/types';
/** Creates migration command */
export declare function createMigrationCommand(): Command;
/** It will install deps in tmp directory and only execute migrations that are provided */
export declare function executeMigrationOnly(options: {
    updateReferences: Record<string, UpdateReference>;
    root: string;
    skipPrompts: boolean;
    rootAction?: Action;
}): Promise<void>;
