/** * `agent-native eval [pattern] [--json] [--threshold N]` * * Discover the app's `*.eval.ts` / `evals/*.ts` files, actually run the agent * for each eval input, score the output with the eval's scorers, print a * readable scored table, and EXIT NON-ZERO if any eval scores below its * threshold. That non-zero exit makes the command a drop-in CI deploy gate: * * - run: agent-native eval (block deploy on regressions) * - or: agent-native eval --json (machine-readable for CI) * * The runner resolves a provider-agnostic engine/model from the existing * registry — no model is hardcoded — so the same suite runs against whatever * engine the app is configured for. */ export declare function runEval(argv: string[]): Promise; //# sourceMappingURL=eval.d.ts.map