import type { AFSListOptions } from "@aigne/afs"; import type { Agent } from "../../../agents/agent.js"; export declare function getHistories({ filter, agent, }: { filter: AFSListOptions["filter"]; agent: Agent; }): Promise<{ role: "user" | "agent"; content: unknown; }[]>;