import type { TaskCount } from './task-counter.js'; export interface LoopEstimate { estimatedTimeMinutes: number; estimatedTokens: number; estimatedCost: number; confidence: 'low' | 'medium' | 'high'; } /** * Estimate loop duration, tokens, and cost based on task count */ export declare function estimateLoop(taskCount: TaskCount): LoopEstimate; /** * Format estimate for display */ export declare function formatEstimate(estimate: LoopEstimate): string; /** * Format estimate as multiple lines for detailed display */ export declare function formatEstimateDetailed(estimate: LoopEstimate): string[]; //# sourceMappingURL=estimator.d.ts.map