import { ChannelsResponse } from './dto/channelsResponse'; export interface DialogClient { list: () => Promise } export interface ChatClient { dialog: DialogClient; } export interface ConnectyCubeClient { chat: ChatClient; }