import type { EvaluatorPlugin, EvalContext, EvalResult, BoberConfig } from "../plugin-interface.js"; export declare class ApiCheckEvaluator implements EvaluatorPlugin { readonly name = "API Check"; readonly description = "Verifies API endpoints respond with expected status codes and shapes."; canRun(_projectRoot: string, _config: BoberConfig): Promise; evaluate(context: EvalContext): Promise; private buildFeedback; } /** * Factory function for the registry. */ export declare function createApiCheckEvaluator(): EvaluatorPlugin; //# sourceMappingURL=api-check.d.ts.map