import { APIChannel, ChannelFlags } from 'discord-api-types/v10'; export declare class Channel { type: number; id: bigint; name: string | null; flags?: ChannelFlags; constructor(data: APIChannel); isThread(): boolean; isTextBased(): boolean; isDMBased(): boolean; isVoiceBased(): boolean; }