import { FastifyReply, FastifyRequest } from 'fastify'; import { TokenExpiredResponse } from "../../ApiResponse"; declare type Options = { whitelist?: string[]; }; export declare function validateJWT({ whitelist }: Options): (request: FastifyRequest, reply: FastifyReply) => Promise; export {};