import type { BotConfig } from "../config/config.js"; export type PluginEnableResult = { config: BotConfig; enabled: boolean; reason?: string; }; export declare function enablePluginInConfig(cfg: BotConfig, pluginId: string): PluginEnableResult;