import type { KlawConfig } from "../config/types.klaw.js"; type SetupRegistryRuntimeModule = Pick; type SetupCliBackendRuntimeEntry = { pluginId: string; backend: { id: string; }; }; type SetupCliBackendRuntimeLookupParams = { backend: string; config?: KlawConfig; workspaceDir?: string; env?: NodeJS.ProcessEnv; }; export declare const testing: { resetRuntimeState(): void; setRuntimeModuleForTest(module: SetupRegistryRuntimeModule | null | undefined): void; }; export declare function resolvePluginSetupCliBackendRuntime(params: SetupCliBackendRuntimeLookupParams): SetupCliBackendRuntimeEntry | undefined; export { testing as __testing };