import { ViberChannelInterface } from './ViberChannelInterface.js'; import { MessageFileInterface } from '../MessageFileInterface.js'; import { ViberService } from '../../types/Channels/Viber/ViberService.js'; import '../MessageInterface.js'; import '../../types/MessageFileType.js'; import '../../enums/Viber/ViberCategory.js'; import '../../types/Channels/Viber/ViberAction.js'; /** * Represents the Viber file interface. * * @deprecated Please use types instead of interfaces. * * @ignore * */ interface ViberFileInterface extends ViberChannelInterface, MessageFileInterface { /** * Represents Viber-specific service information. */ viberService: ViberService; } export type { ViberFileInterface };