import { CreateContactusDto } from './dto/create-contactus.dto';
import { UpdateContactusDto } from './dto/update-contactus.dto';
import { CommonService } from 'src/common/common.service';
import { DbService } from 'src/db/db.service';
import { ContactUsAggregation } from './contactus.aggregation';
export declare class ContactusService {
    private readonly commonService;
    private readonly model;
    private readonly contactusAggregation;
    constructor(commonService: CommonService, model: DbService, contactusAggregation: ContactUsAggregation);
    create(createContactusDto: CreateContactusDto, payload: any): Promise<{
        message: string;
    }>;
    findAll(body: any): Promise<{
        count: any;
        data: any;
    }>;
    findOne(id: string): Promise<{
        data: any[];
    }>;
    update(id: string, updateContactusDto: UpdateContactusDto): Promise<{
        message: string;
    }>;
    remove(id: number): string;
}
