import { WhatsAppChannelInterface } from './WhatsAppChannelInterface.js'; import { MessageImageInterface } from '../MessageImageInterface.js'; import '../MessageInterface.js'; import '../../types/MessageImageType.js'; /** * Represents an interface for WhatsApp image messages. * * @deprecated Please use types instead of interfaces. * * @ignore */ interface WhatsAppImageInterface extends WhatsAppChannelInterface, MessageImageInterface { } export type { WhatsAppImageInterface };