import { Bot } from "mineflayer";
export declare class TemporarySubscriber {
    readonly bot: Bot;
    private readonly subscriptions;
    constructor(bot: Bot);
    subscribeTo(event: string, callback: Function): void;
    cleanup(): void;
}
