/** * Capacity Estimator * * Estimates maximum capacity and projects costs based on load test results. * * @module scanners/scale/capacity-estimator */ import type { CapacityEstimate, LoadTestResult, Bottleneck } from "./types.js"; /** * Estimate capacity for a project */ export declare function estimateCapacity(loadTestResult?: LoadTestResult, bottlenecks?: Bottleneck[]): Promise; /** * Calculate capacity score (100 = excellent capacity margin) */ export declare function calculateCapacityScore(estimate: CapacityEstimate, targetConcurrent?: number): number; //# sourceMappingURL=capacity-estimator.d.ts.map