import { ContactusService } from './contactus.service';
import { CreateContactusDto, FindContactUsDto } from './dto/create-contactus.dto';
import { UpdateContactusDto } from './dto/update-contactus.dto';
export declare class ContactusController {
    private readonly contactusService;
    constructor(contactusService: ContactusService);
    create(createContactusDto: CreateContactusDto, req: any): Promise<{
        message: string;
    }>;
    findAll(body: FindContactUsDto): Promise<{
        count: any;
        data: any;
    }>;
    findOne(id: string): Promise<{
        data: any[];
    }>;
    update(id: string, updateContactusDto: UpdateContactusDto): Promise<{
        message: string;
    }>;
}
