import type { AppId, StoreId } from "@x12i/catalox-contracts/ids.js"; import type { AgentRegistryRecord, AgentRegistryScope } from "@x12i/catalox-contracts/agents.js"; import { MongoStore } from "./mongo-store.js"; export declare class AgentStore { private readonly store; constructor(store: MongoStore); private col; get(scope: AgentRegistryScope): Promise; upsert(scope: AgentRegistryScope, input: { agents: string[]; metadata?: Record; }): Promise; resolveForContext(input: { storeId?: StoreId; appId?: AppId; }): Promise; } //# sourceMappingURL=agent-store.d.ts.map