export type PrintHelpOptions = {
    dependencies: string[];
    dirPath: string;
};
export declare function packageManagerInstallCommands(dependencies: string[]): string[];
export declare function printHelp({ dirPath, dependencies }: PrintHelpOptions): void;
