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