import { NextFunction, Request, Response } from 'express'; interface ReqQuery { name: string | null; property: string | null; value: any | null; } export declare const overview: (req: Request, res: Response, next: NextFunction) => Promise; export {};