import { IDependencyInstaller, DependencyInstallResult } from '../types'; export declare class NpmInstaller implements IDependencyInstaller { private readonly command; readonly type: "npm"; constructor(command?: string); detect(skillRoot: string): boolean; install(skillRoot: string, timeoutMs: number): Promise; } //# sourceMappingURL=npm-installer.d.ts.map