import { Result } from '../result';
import { ExecConfig } from './exec';
/**
 * Executes npx script
 *
 * ```js
 * await npx('create-codeceptjs .');
 * ```
 *
 * @param command
 * @param config
 */
export default function npx(command: any, config: ExecConfig): Promise<Result>;
//# sourceMappingURL=npx.d.ts.map