import type { KlawConfig } from "../../config/types.klaw.js"; export type PluginRegistryScope = "configured-channels" | "channels" | "all"; export declare function ensurePluginRegistryLoaded(options?: { scope?: PluginRegistryScope; config?: KlawConfig; activationSourceConfig?: KlawConfig; env?: NodeJS.ProcessEnv; workspaceDir?: string; onlyPluginIds?: string[]; onlyChannelIds?: string[]; }): void; export declare const testing: { resetPluginRegistryLoadedForTests(): void; }; export { testing as __testing };