import { Response } from 'express';
import { ReportsService } from './reports.service';
export declare class ReportsController {
    private readonly reportsService;
    constructor(reportsService: ReportsService);
    vendorsList(page: string, limit: string, search: string, status: string, res: Response): Promise<void>;
    vendorReport(id: string, res: Response): Promise<void>;
}
