export declare const npm: { install: typeof install; npmCommand: typeof npmCommand; }; declare function install(module: string | undefined, otherOptions: string | undefined, directory: string): any; declare function npmCommand(args: string, options?: any): string | Buffer; export {};