import { ContactService } from './contact.service';
import { CreateContactDto } from './dto/create-contact.dto';
export declare class ContactController {
    private readonly service;
    constructor(service: ContactService);
    create(dto: CreateContactDto, req: any): Promise<import("./contact-message.entity").ContactMessage>;
    list(skip?: string, take?: string): Promise<{
        total: number;
        items: import("./contact-message.entity").ContactMessage[];
    }>;
}
