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