import { ModelsService } from 'src/models/models.service';
import { CommonService } from 'src/common/common.service';
import { TranslationService } from 'src/common/services/translation.service';
import { EmailService } from 'src/common/services/email.service';
import { RenewalListDto, RenewalSummaryQueryDto, MarkRenewedDto } from './dto/renewal.dto';
export declare class RenewalService {
    private readonly models;
    private readonly common;
    private readonly translationService;
    private readonly emailService;
    private readonly logger;
    constructor(models: ModelsService, common: CommonService, translationService: TranslationService, emailService: EmailService);
    private t;
    private fail;
    private scope;
    private lookupStages;
    private baseMatch;
    private bucketMatch;
    private searchStage;
    private notRenewedStage;
    private toDto;
    list(query: RenewalListDto, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any[];
        pagination: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
            hasNextPage: boolean;
            hasPrevPage: boolean;
        };
    }>;
    summary(query: RenewalSummaryQueryDto, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    private findPolicyScoped;
    private findRenewal;
    dispatchNotice(id: string, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    markRenewed(id: string, dto: MarkRenewedDto, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
}
