import type { SupportedPackageManager } from './package-manager';
export declare const DEPENDENCY_INSTALL_ERROR: (command: string, errorMessage?: string) => Error;
/**
 * Runs an install of the preferred package manager in the provided current working directory
 */
export declare function installDependencies(options: {
    /** Current working directory where the install should be performed */
    cwd: string;
    /** The preferred package manager */
    packageManager?: SupportedPackageManager;
    /** If the install should be done silently */
    silent?: boolean;
    /** Optional packages to specify what exactly should be installed */
    packages?: string[];
    /** If the install should display the last successful message */
    silentEnd?: boolean;
}): Promise<void>;
