import { CategoryChannel, GuildChannel, Role, GuildMember, GuildTextBasedChannel } from 'discord.js'; /** * Smart find a channel that can receive messages - includes text channels, announcement channels, and voice channel text chats */ export declare function smartFindTextChannel(identifier: string): Promise; /** * Smart find any channel (text, voice, category) - uses cached data */ export declare function smartFindChannel(identifier: string): Promise; /** * Smart find category channel - uses cached data */ export declare function smartFindCategory(identifier: string): Promise; /** * Smart find role - uses cached data and fuzzy matching */ export declare function smartFindRole(identifier: string): Promise; /** * Smart find member - uses cached data and fuzzy matching */ export declare function smartFindMember(identifier: string): Promise;