export interface ConfidenceToWaitConfig { /** Wait at confidence = 1.0 (high EOT certainty). Default: 150 ms. */ readonly minWaitMs?: number; /** Wait at confidence = 0.0 (low EOT certainty). Default: 2000 ms. */ readonly maxWaitMs?: number; } /** * Maps an end-of-turn confidence score to a bounded finalize wait (LiveKit-style). * Higher confidence → shorter wait. Monotonic, clamped, deterministic. */ export declare function confidenceToWaitMs(confidence: number, config?: ConfidenceToWaitConfig): number; //# sourceMappingURL=confidence-to-wait.d.ts.map