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