import express from 'express'; import { ServerConfig } from './types.js'; /** * Create and configure the DID authentication server * * @param config - Server configuration options * @returns Express application */ export declare function createServer(config?: Partial): express.Application; export * from './types.js'; export { MemoryAdapter } from './adapters/memory.js'; export * from './middleware/authenticate.js'; export * from './jwt/index.js'; export * from './crypto/index.js'; export { createAuthRoute } from './routes/auth.js'; export { createVerifyRoute } from './routes/verify.js'; export { createAccountRoute } from './routes/account.js'; //# sourceMappingURL=index.d.ts.map