import type { EstimateRecord, EffortBreakdown } from "./types/metrics.js"; import type { AutonomousRun, BenchmarkPhaseDuration } from "./types/workflow-run.js"; export declare function pendingEffortBreakdown(estimate: EstimateRecord): EffortBreakdown; export declare function completedWithoutDurationEffortBreakdown(estimate: EstimateRecord): EffortBreakdown; export declare function manualEffortBreakdown(estimate: EstimateRecord, timing: { hours: number; }): EffortBreakdown; export declare function workflowEffortBreakdown(estimate: EstimateRecord, run: AutonomousRun, phaseDurations: BenchmarkPhaseDuration[]): EffortBreakdown;