import { Agent } from "../index"; export declare const getAgentsCollection: () => import("mongodb").Collection; export declare const findAgents: (filter?: any) => Promise[]>; export declare const findAgentById: (agentId: string) => Promise | null>; export declare const findAgentsByClientId: (clientId: string) => Promise[]>; export declare const createAgent: (agent: Agent) => Promise | null>; export declare const updateAgent: (agentId: string, data: Partial) => Promise | null>; export declare const removeAgent: (agentId: string) => Promise; //# sourceMappingURL=agents.getters.d.ts.map