/// <reference types="node" />
export function execp(cmd?: string): import('child_process').PromiseWithChild<{
  stdout: string;
  stderr: string;
}>;
export function requireModule(path?: string): any;
