import { ChannelFlags as APIChannelFlags, ChannelType } from "discord-api-types/v10"; import BitField from "../basic/BitField.mjs"; export declare class ChannelFlags extends BitField { constructor(flags: number); /** Whether the user has a flag */ has(flag: bigint | APIChannelFlags): boolean; /** Weather the user even has any flags */ isEmpty(): boolean; } export declare const GuildTextBasedChannelTypes: ChannelType[]; export declare const TextBasedChannelTypes: ChannelType[]; export declare const ThreadChannelTypes: ChannelType[]; export declare const VoiceBasedChannelTypes: ChannelType[]; export declare const DMChannelTypes: ChannelType[];