import { AbstractQuery } from "@twixtlabs/lambda-cqrs-poc"; export declare class FindActiveConversationIdForChannelUserQuery extends AbstractQuery { static NAME: string; readonly tenantId: string; readonly channelId: string; readonly channelUserId: string; constructor({ tenantId, channelId, channelUserId }: { tenantId: string; channelId: string; channelUserId: string; }); } export interface FindActiveConversationIdForChannelUserQueryResponse { conversationId: string | null; }