import { MessageImageInterface } from '../MessageImageInterface.js'; import { MMSChannelInterface } from './MMSChannelInterface.js'; import '../MessageInterface.js'; import '../../types/MessageImageType.js'; /** * Represents an interface for defining MMS channel messages with images. * @deprecated Please use types instead of interfaces. * * @ignore */ interface MMSImageInterface extends MessageImageInterface, MMSChannelInterface { } export type { MMSImageInterface };