import { OAuthRegisteredClientsStore } from "@modelcontextprotocol/sdk/server/auth/clients.js"; import { OAuthClientInformationFull } from "@modelcontextprotocol/sdk/shared/auth.js"; /** * In-memory OAuth client store supporting Dynamic Client Registration (RFC 7591). * * For single-instance deployments (ECS). Migrate to Redis/DynamoDB for multi-instance. */ export declare class InMemoryClientsStore implements OAuthRegisteredClientsStore { private clients; constructor(); getClient(clientId: string): OAuthClientInformationFull | undefined; registerClient(client: Omit): OAuthClientInformationFull; } //# sourceMappingURL=clients-store.d.ts.map