import type { EvalAgentInput, EvalDefinition, EvalToolInput } from "./types.js"; /** Define an eval that targets a Veryfront agent. */ export declare function evalAgent(input: EvalAgentInput): EvalDefinition; /** Define an eval that targets a Veryfront tool. */ export declare function evalTool(input: EvalToolInput): EvalDefinition; /** Check whether a value is a normalized eval definition. */ export declare function isEvalDefinition(value: unknown): value is EvalDefinition; //# sourceMappingURL=factory.d.ts.map