import { Bot, BotOptions } from "mineflayer";
import colorizer from "./colorizer";
declare module 'mineflayer' {
    interface BotEvents {
        chatColorized: (colorizedMsg: string, pos: string, jsonMsg: any) => void;
    }
}
export { colorizer as colorizeText };
export { colorizeExtra, ExtraText } from "./colorizer";
export default function colorChat(bot: Bot, opt: BotOptions): void;
