import { BaseService } from '../base.service'; import { PusherModuleOptions } from '../interfaces'; import { HttpClient } from '../http-client'; import { ChannelsListResponse, ChannelInfo, ChannelUsersResponse, ChannelQueryParams } from '../interfaces'; export declare class ChannelService extends BaseService { constructor(options: PusherModuleOptions, httpClient: HttpClient); getChannels(params?: ChannelQueryParams): Promise; getChannel(channelName: string, params?: ChannelQueryParams): Promise; getChannelUsers(channelName: string): Promise; }