import { ViberChannelInterface } from './ViberChannelInterface.js'; import { MessageImageInterface } from '../MessageImageInterface.js'; import { ViberActionParams } from '../../types/Channels/Viber/ViberActionParams.js'; import '../MessageInterface.js'; import '../../types/MessageImageType.js'; import '../../types/Channels/Viber/ViberService.js'; import '../../enums/Viber/ViberCategory.js'; import '../../types/Channels/Viber/ViberAction.js'; /** * Represents the Viber image interface. * * * @deprecated Please use types instead of interfaces. * * @ignore */ interface ViberImageInterface extends ViberChannelInterface, MessageImageInterface { /** * Represents Viber-specific action parameters. */ viberService: ViberActionParams; } export type { ViberImageInterface };