import type RESTManager from "../rest/RESTManager"; import type { Sticker, StickerPack } from "../types/guilds"; import type { VoiceRegion } from "../types/voice"; /** Methods that don't fit anywhere else. */ export default class Miscellaneous { #private; constructor(manager: RESTManager); /** * Get the nitro sticker packs. */ getNitroStickerPacks(): Promise>; /** * Get a sticker. * @param stickerID The ID of the sticker to get. */ getSticker(stickerID: string): Promise; /** * Get the list of usable voice regions. */ getVoiceRegions(): Promise>; }