import { ChatConversationService } from './chat-conversation.service';
import { CreateConversationDto } from './dto/create-conversation.dto';
import { UpdateConversationDto } from './dto/update-conversation.dto';
export declare class ChatConversationController {
    private readonly conversationService;
    constructor(conversationService: ChatConversationService);
    create(body: CreateConversationDto): Promise<import("./entities/chat-conversation.entity").ChatConversation>;
    findOne(id: string): Promise<import("./entities/chat-conversation.entity").ChatConversation | null>;
    update(id: string, body: UpdateConversationDto): Promise<import("./entities/chat-conversation.entity").ChatConversation>;
    remove(id: string): Promise<void>;
}
