export interface InstallResult {
    success: boolean;
    command: string;
    exitCode?: number;
    skipped: boolean;
}
/**
 * Run install command with live output and retry logic
 */
export declare function runInstallCommand(cwd: string, initialCommand?: string): Promise<InstallResult>;
