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