import { Request, Response } from 'express';
import { Config, UnauthorizedConfig } from '../types';
export default function handle(config: Config | UnauthorizedConfig): (_req: Request, res: Response) => void;
