import { BaseGuildVoiceChannel, Collection, Snowflake } from 'discord.js'; import { BushCategoryChannel } from './BushCategoryChannel'; import { BushGuild } from './BushGuild'; import { BushGuildMember } from './BushGuildMember'; /** * Represents a voice-based guild channel on Discord. */ export declare class BushBaseGuildVoiceChannel extends BaseGuildVoiceChannel { public readonly members: Collection; public guild: BushGuild; public readonly parent: BushCategoryChannel | null; }