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<any, APISticker> {
    namespace: string;
    filter(data: APISticker, id: string, guild_id: string, from: CacheFrom): boolean;
    get(id: string): ReturnCache<StickerStructure | undefined>;
    raw(id: string): ReturnCache<APISticker | undefined>;
    bulk(ids: string[]): ReturnCache<StickerStructure[]>;
    bulkRaw(ids: string[]): ReturnCache<APISticker[]>;
    values(guild: string): ReturnCache<StickerStructure[]>;
    valuesRaw(guild: string): ReturnCache<APISticker[]>;
}
