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