import { CommonService } from 'src/common/common.service';
import { PolicyService } from './policy.service';
import { CancelPolicyDto, CreatePolicyDto, PolicyListDto, RejectPolicyVerificationDto, UpdatePolicyDto } from './dto/policy.dto';
export declare class PolicyController {
    private readonly policyService;
    private readonly common;
    constructor(policyService: PolicyService, common: CommonService);
    create(req: any, dto: CreatePolicyDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    list(req: any, query: PolicyListDto): Promise<{
        status: string;
        message: string;
        data: any[];
        pagination: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
            hasNextPage: boolean;
            hasPrevPage: boolean;
        };
    }>;
    getById(req: any, id: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    update(req: any, id: string, dto: UpdatePolicyDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    cancel(req: any, id: string, dto: CancelPolicyDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    approve(req: any, id: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    reject(req: any, id: string, dto: RejectPolicyVerificationDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
}
