import type { NextFunction, Request } from 'express'; import { Config, ExtendedResponse } from './types'; export * from './types'; export declare function cortinaMiddleware(config: Config): (req: Request, res: ExtendedResponse, next: NextFunction) => Promise;