import Collection from "../util/Collection"; import BaseModule from "./BaseModule"; import Message from "../structures/Message"; import { APIMessageTimerFormat } from "../types/message"; import { FetchId } from "../types/id"; declare type CountdownSet = { duration?: number; allowOverrun?: boolean; format?: APIMessageTimerFormat; }; declare class Messages extends BaseModule { fetchAll(): Promise>; fetch(id: FetchId): Promise; delete(id: FetchId): Promise; setText(id: FetchId, text: string): Promise; setClock(id: FetchId, clock: boolean): Promise; setCountdown(id: FetchId, options: CountdownSet): Promise; } export default Messages; //# sourceMappingURL=Messages.d.ts.map