import { Request, Response, NextFunction } from "express"; export declare const authorized: (errorMessage?: string) => (req: Request, res: Response, next: NextFunction) => void; export declare const temporaryAuthorized: (errorMessage?: string) => (req: Request, res: Response, next: NextFunction) => void; export declare const verifyUpdateAccessToken: () => (req: Request, res: Response, next: NextFunction) => Promise;