import { ChatConversationUserService } from './chat-conversation-user.service';
export declare class ChatConversationUserController {
    private readonly convUserService;
    constructor(convUserService: ChatConversationUserService);
    assignUser(conversationId: string, userId: number): Promise<import("./entities/chat-conversation-user.entity").ChatConversationUser>;
    unassignUser(conversationId: string, userId: number): Promise<import("./entities/chat-conversation-user.entity").ChatConversationUser>;
    getUsers(conversationId: string): Promise<import("./entities/chat-conversation-user.entity").ChatConversationUser[]>;
    getConversations(userId: number): Promise<import("./entities/chat-conversation-user.entity").ChatConversationUser[]>;
}
