import { Response } from 'express';
import { CommonService } from 'src/common/common.service';
import { ReportService } from './report.service';
import { ReportPeriodDto, ReportTypeParamDto } from './dto/report.dto';
export declare class ReportController {
    private readonly reportService;
    private readonly common;
    constructor(reportService: ReportService, common: CommonService);
    get(req: any, params: ReportTypeParamDto, query: ReportPeriodDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    export(req: any, params: ReportTypeParamDto, query: ReportPeriodDto, res: Response): Promise<string>;
}
