import { AbstractCommand } from "@twixtlabs/lambda-cqrs-poc"; export declare abstract class OutboundMessageCommand extends AbstractCommand { readonly tenantId: string; readonly messageId: string; constructor({ commandName, tenantId, messageId }: { commandName: string; tenantId: string; messageId: string; }); }