import { Bot } from "mineflayer"; import { PVP } from "./PVP"; export declare function plugin(bot: Bot): void; declare module "mineflayer" { interface Bot { pvp: PVP; } } export * from './Cooldown'; export * from './TimingSolver';