@aura-ai/cli
Version:
A Go-to-Market CLI tool for analyzing product positioning and market strategy
14 lines • 464 B
TypeScript
import React from 'react';
import { AnalysisStep, EntityProgressInfo } from '../services/analyzer.js';
interface AnalysisProgressProps {
currentStep: AnalysisStep | null;
message: string;
progress?: number;
entityProgress?: EntityProgressInfo | null;
}
/**
* 5.5 Analysis progress display component
*/
declare const AnalysisProgress: React.FC<AnalysisProgressProps>;
export default AnalysisProgress;
//# sourceMappingURL=AnalysisProgress.d.ts.map