import { CacheType, Guild, GuildMember, Interaction, TextBasedChannel, VoiceBasedChannel } from "discord.js"; import { CommandUserInput } from "../../models/Command"; export declare class UserInputHelper { getGuildMember(input: Interaction): GuildMember; getGuildMemberHybrid(input: CommandUserInput): GuildMember; getChannel(input: Interaction): TextBasedChannel; getChannelHybrid(input: CommandUserInput): TextBasedChannel; getCurrentVoiceChannel(input: Interaction): VoiceBasedChannel; getCurrentVoiceChannelHybrid(input: CommandUserInput): VoiceBasedChannel; getGuild(input: Interaction): Guild; getGuildHybrid(input: CommandUserInput): Guild; }