import type { UpdateReference } from './types/types';
import type { Action } from '@dynatrace/openkit-js';
/** Update dynatrace packages script */
export declare function update(options: {
    /** The root path */
    root: string;
    /** Update references */
    updateReferences: Record<string, UpdateReference>;
    skipInstall: boolean;
    skipPrompts: boolean;
    rootAction?: Action;
}): Promise<void>;
