import type { AgentModeEnum } from "@empiricalrun/shared-types/chat-agent"; import { type AgentParams, BaseAgent } from "./base"; import { ChatAgent } from "./chat"; import { CodeReviewAgent } from "./code-review"; import { FastTriageAgent } from "./fast-triage"; import { TriageAgent } from "./triage"; export declare function createAgent(mode: AgentModeEnum, params: AgentParams): BaseAgent; export { BaseAgent, ChatAgent, CodeReviewAgent, FastTriageAgent, TriageAgent }; export type { AgentParams }; //# sourceMappingURL=index.d.ts.map