// types/pluginLoader.d.ts

/**
 * Dynamically loads plugins from the SDK or external plugin directories.
 * Automatically skips plugins already registered inline.
 *
 * @param pluginNames - Array of plugin names (e.g. ["MONGO_SYNC", "CUSTOM_1"])
 * @returns Promise that resolves when all plugins are loaded
 */
export function loadPlugins(pluginNames: string[]): Promise<void>;
