import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import type { IAgentOrchestratorClient } from './orchestrator-client/orchestrator-client.js'; export type ClientFactory = () => IAgentOrchestratorClient; /** * Creates a function to register all resources with the server. * @param clientFactory - Factory function that creates client instances * @returns Function that registers all resources with a server */ export declare function createRegisterResources(clientFactory: ClientFactory): (server: Server) => void; //# sourceMappingURL=resources.d.ts.map