import type { Request, Response, NextFunction } from 'express'; import { type CortexConfig } from '@cortex/core'; export interface AuthMiddlewareOptions { config: CortexConfig; host: string; } export declare function createAuthMiddleware(options: AuthMiddlewareOptions): (req: Request, res: Response, next: NextFunction) => void; export declare function validateWsToken(config: CortexConfig, host: string, url: string | undefined): boolean; //# sourceMappingURL=auth.d.ts.map