/**
 * Circuit Breaker Reset Tool
 *
 * Allows manual reset of circuit breakers for specific provider/model combinations.
 * Useful when a temporary issue has been resolved and normal operation should resume.
 */
import { z } from "zod";
export declare const CircuitBreakerResetToolSchema: z.ZodObject<{
    provider: z.ZodString;
    model: z.ZodString;
}, "strip", z.ZodTypeAny, {
    model: string;
    provider: string;
}, {
    model: string;
    provider: string;
}>;
export declare function runCircuitBreakerResetTool(args: z.infer<typeof CircuitBreakerResetToolSchema>): Promise<{
    result: string;
}>;
export declare const circuitBreakerResetToolName = "circuit_breaker_reset";
export declare const circuitBreakerResetToolDescription = "Reset circuit breaker for a specific provider/model combination to resume normal operation";
//# sourceMappingURL=circuit-breaker-reset.d.ts.map