import type { PluginManifestRegistry } from "../plugins/manifest-registry.js"; import type { PluginAutoEnableCandidate, PluginAutoEnableResult } from "./plugin-auto-enable.types.js"; import type { KlawConfig } from "./types.klaw.js"; export declare function materializePluginAutoEnableCandidates(params: { config?: KlawConfig; candidates: readonly PluginAutoEnableCandidate[]; env?: NodeJS.ProcessEnv; manifestRegistry?: PluginManifestRegistry; }): PluginAutoEnableResult; export declare function applyPluginAutoEnable(params: { config?: KlawConfig; env?: NodeJS.ProcessEnv; manifestRegistry?: PluginManifestRegistry; }): PluginAutoEnableResult;