import { BotForgeConfig, BotForgeAPI } from "../types";
declare global {
    interface Window {
        BotForge: {
            initBotForge: (config: BotForgeConfig) => BotForgeAPI;
            version: string;
        };
    }
}
export declare const initBotForge: (config: BotForgeConfig) => BotForgeAPI;
