import type { KlawConfig } from "../config/types.klaw.js"; import type { PluginManifestRecord } from "./manifest-registry.js"; export declare function normalizePluginConfigId(id: unknown): string; export declare function isWorkspacePluginAllowedByConfig(params: { config: KlawConfig | undefined; isImplicitlyAllowed?: (pluginId: string) => boolean; plugin: PluginManifestRecord; }): boolean;