import { Middleware } from '../middleware'; import { Context } from '../context'; import { HandlerExecutionChain } from '../handler'; export declare class CorsMiddleware implements Middleware { protected readonly options: any; protected readonly endpoint?: string; protected handlerExecutionChain: HandlerExecutionChain; handle(ctx: Context, next: () => Promise): Promise; readonly priority: number; } //# sourceMappingURL=cors-middleware.d.ts.map