export declare enum ReportType {
    AGENT = "agent",
    PRODUCT = "product",
    INSURER = "insurer",
    COMMISSION = "commission",
    CONVERSION = "conversion"
}
export declare class ReportTypeParamDto {
    type: ReportType;
}
export declare class ReportPeriodDto {
    month?: number;
    year?: number;
    quarter?: boolean;
}
