import { ContactChannelVO } from "./ContactChannelVO"; import { ContactCommand } from "./ContactCommand"; export declare class CreateContactCommand extends ContactCommand { static readonly commandName = "CreateContactCommand"; readonly name?: string; readonly messagingChannel?: ContactChannelVO; constructor({ tenantId, contactId, name, messagingChannel, }: { tenantId: string; contactId: string; name?: string; messagingChannel?: ContactChannelVO; }); }