import { Snowflake } from "@wilsonjs/constants"; import { BasicUser } from "@wilsonjs/models"; import { Cache } from "./Cache"; import { User } from "../structures"; import { WilsonClient } from "../Client"; export declare class UserCache extends Cache { protected client: WilsonClient; constructor(client: WilsonClient, entries?: ReadonlyArray | null); add(basic: Partial): User; update(basic: Partial): [User | undefined, User | undefined]; }