import type { EvaluatorPlugin, EvalContext, EvalResult, BoberConfig } from "../plugin-interface.js"; export declare class BuildCheckEvaluator implements EvaluatorPlugin { readonly name = "Build Check"; readonly description = "Runs the project build command and checks for success."; canRun(projectRoot: string, config: BoberConfig): Promise; evaluate(context: EvalContext): Promise; /** * Attempt to parse common error patterns from build output. */ private extractBuildErrors; private buildFeedback; } /** * Factory function for the registry. */ export declare function createBuildCheckEvaluator(): EvaluatorPlugin; //# sourceMappingURL=build-check.d.ts.map