import { TwitchCommandClient } from '../client/TwitchCommandClient';
interface ChatChannel {
    channel: string;
    room_id?: string;
}
declare class TwitchChatChannel {
    private originalMessage;
    private client;
    constructor(originalMessage: ChatChannel, client: TwitchCommandClient);
    /**
     * Get channel name
     */
    get name(): string;
    /**
     * Get room_id
     */
    get id(): string;
}
export { TwitchChatChannel };
