declare function command(pkgManager: string, cmd: string): "global add --silent" | "i -g" | "add --silent" | "i" | "add -D --silent" | "i -D" | "--help"; declare function shell(cmd: string, cwd?: string): Promise; declare function write(path: string, data: {}): Promise; export { shell, write, command };