/// <reference types="node" />
import { SpawnSyncOptions } from 'child_process';
import { executeCmd } from './command';
export declare function executeNpmCmd(params: readonly string[], options?: SpawnSyncOptions): ReturnType<typeof executeCmd>;
