import type { CacheFrom } from '../..'; import type { GatewayPresenceUpdate } from '../../types'; import { GuildRelatedResource } from './default/guild-related'; export declare class Presences extends GuildRelatedResource { namespace: string; filter(data: GatewayPresenceUpdate, id: string, guild_id: string, from: CacheFrom): boolean; parse(data: any, key: string, guild_id: string): PresenceResource; } export type PresenceResource = Omit & { id: string; user_id: string; };