import type { CacheFrom, ReturnCache } from '../..'; import { type UserStructure } from '../../client/transformers'; import type { APIUser } from '../../types'; import { BaseResource } from './default/base'; export declare class Users extends BaseResource { namespace: string; filter(data: APIUser, id: string, from: CacheFrom): boolean; get(id: string): ReturnCache; raw(id: string): ReturnCache; bulk(ids: string[]): ReturnCache; bulkRaw(ids: string[]): ReturnCache; values(): ReturnCache; valuesRaw(): ReturnCache; }