import type { JinnConfig } from "../shared/types.js"; /** * Is this plugin enabled? * * Absence is not enabled. The two lists are the operator's explicit decisions and * the only input to this one: a plugin named in neither is disabled, because a * directory can arrive in the instance home by being copied and must not start * running because nobody has said no yet. `disabled` wins over `enabled` when a * plugin somehow appears in both — the fail-closed reading is the safe one. */ export declare function isPluginEnabled(id: string, config: Pick): boolean; //# sourceMappingURL=enablement.d.ts.map