import { HttpContext, Middleware, NextHandler } from '@supercharge/contracts'; export declare class VerifyCsrfTokenMiddleware implements Middleware { /** * Returns an array of URIs that should be excluded from CSRF verfication. * * @returns {Array} */ exclude(): string[]; /** * Handle the incoming request. * * @param ctx HttpContext * @param next NextHandler */ handle(_: HttpContext, next: NextHandler): Promise; }