import { CommonService } from 'src/common/common.service';
import { LeadService } from './lead.service';
import { PolicyService } from 'src/policy/policy.service';
import { AddLeadNoteDto, CreateLeadDto, LeadBoardDto, LeadListDto, MoveLeadStageDto, UpdateLeadDto } from './dto/lead.dto';
export declare class LeadController {
    private readonly leadService;
    private readonly policyService;
    private readonly common;
    constructor(leadService: LeadService, policyService: PolicyService, common: CommonService);
    create(req: any, dto: CreateLeadDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    list(req: any, query: LeadListDto): Promise<{
        status: string;
        message: string;
        data: any[];
        pagination: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
            hasNextPage: boolean;
            hasPrevPage: boolean;
        };
    }>;
    board(req: any, query: LeadBoardDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    getById(req: any, id: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    update(req: any, id: string, dto: UpdateLeadDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    moveStage(req: any, id: string, dto: MoveLeadStageDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    addNote(req: any, id: string, dto: AddLeadNoteDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
}
