import { CommonService } from 'src/common/common.service';
import { LeadService } from './lead.service';
import { AddLeadNoteDto, CreateLeadDto, LeadListDto, MoveLeadStageDto } from './dto/lead.dto';
export declare class AgentLeadController {
    private readonly leadService;
    private readonly common;
    constructor(leadService: LeadService, 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;
        };
    }>;
    getById(req: any, id: string): 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;
    }>;
}
