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