import { Types } from 'mongoose';
import { ModelsService } from 'src/models/models.service';
import { CommonService } from 'src/common/common.service';
import { TranslationService } from 'src/common/services/translation.service';
import { CreateCustomerDto, CustomerListDto, UpdateCustomerDto } from './dto/customer.dto';
export declare class CustomerService {
    private readonly models;
    private readonly common;
    private readonly translationService;
    constructor(models: ModelsService, common: CommonService, translationService: TranslationService);
    private t;
    private fail;
    private leadScope;
    private myCustomerIds;
    private toDto;
    create(dto: CreateCustomerDto, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    list(query: CustomerListDto, actor: any, lang: string, restrictToIds?: Types.ObjectId[]): Promise<{
        status: string;
        message: string;
        data: any[];
        pagination: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
            hasNextPage: boolean;
            hasPrevPage: boolean;
        };
    }>;
    getById(id: string, actor: any, lang: string, restrictToIds?: Types.ObjectId[]): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    listForAgent(query: CustomerListDto, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any[];
        pagination: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
            hasNextPage: boolean;
            hasPrevPage: boolean;
        };
    }>;
    getByIdForAgent(id: string, actor: any, lang: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    update(id: string, dto: UpdateCustomerDto, lang: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
}
