import { IKickClient } from '../client/interfaces/kickClient';
import { IChannelService } from './interfaces/channelService';
import { IApiResponseGetChannel } from './interfaces/response/apiResponseGetChannel';
export declare class ChannelService implements IChannelService {
    private readonly client;
    constructor(client: IKickClient);
    getMyChannel(): Promise<IApiResponseGetChannel>;
    getChannels(ids: number[]): Promise<IApiResponseGetChannel[]>;
    getChannelById(id: number): Promise<IApiResponseGetChannel>;
    setLiveStream(categoryId: number, streamTitle: string): Promise<void>;
}
