import type { CacheFrom, ReturnCache } from '../..'; import { type StickerStructure } from '../../client/transformers'; import type { APISticker } from '../../types'; import { GuildRelatedResource } from './default/guild-related'; export declare class Stickers extends GuildRelatedResource { namespace: string; filter(data: APISticker, id: string, guild_id: string, from: CacheFrom): boolean; get(id: string): ReturnCache; raw(id: string): ReturnCache; bulk(ids: string[]): ReturnCache; bulkRaw(ids: string[]): ReturnCache; values(guild: '*' | (string & {})): ReturnCache; valuesRaw(guild: string): ReturnCache; }