import Timer from "../structures/Timer"; import { FetchId } from "../types/id"; import Collection from "../util/Collection"; import BaseModule from "./BaseModule"; declare class Timers extends BaseModule { fetchAll(): Promise>; getCurrentTime(timerId?: FetchId): Promise>; fetch(id: FetchId): Promise; stop(id?: FetchId): Promise; start(id?: FetchId): Promise; reset(id?: FetchId): Promise; delete(id: FetchId): Promise; getSystemTime(): Promise; getVideoCountdown(): Promise; } export default Timers; //# sourceMappingURL=Timers.d.ts.map