import { type CategoryChannelType, type GuildChannelType, type GuildTextChannelType, type TextChannelType, type ThreadChannelType } from "discord.js"; export declare const categoryChannelTypes: readonly CategoryChannelType[]; export declare const guildChannelTypes: readonly GuildChannelType[]; export declare const guildTextChannelTypes: readonly GuildTextChannelType[]; export declare const textChannelTypes: readonly TextChannelType[]; export declare const threadChannelTypes: readonly ThreadChannelType[]; /** * Interaction `tokens` are valid for **15 minutes** and can be used to send followup messages but you **must send an initial response within 3 seconds of receiving the event**. If the 3 second deadline is exceeded, the token will be invalidated. * * https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-callback */ export declare const InteractionTokenExpirationTime = 900000;