import type { AgentTrace } from './types'; export interface SimulatorOptions { agent: string; steps: number; tools?: string[]; seed?: number; includeErrors?: boolean; } export interface SimulatedTrace extends AgentTrace { metadata: { simulated: true; agent: string; seed: number; [key: string]: any; }; } /** * Generate a synthetic agent trace without calling any LLM. */ export declare function simulateTrace(options: SimulatorOptions): SimulatedTrace; /** * Generate multiple synthetic traces with variation. */ export declare function simulateBatch(options: SimulatorOptions, count: number): SimulatedTrace[]; //# sourceMappingURL=simulator.d.ts.map