/**
 * Npm config options passed to the install command.
 */
export interface INpmInstallArgs {
    /**
     * The location to install global packages
     */
    prefix: string;
    /**
     * The base URL of the npm package registry
     */
    registry?: string;
    /**
     * Allows us to handle scoped registries in the future
     */
    [key: string]: string;
}
//# sourceMappingURL=INpmInstallArgs.d.ts.map