/** * Scanner Plugin System * * Provides extensibility through external scanner plugins. * * @module plugins */ export { PluginManifestSchema, isValidManifest, validateManifest, type PluginManifest, type LoadedPlugin, type PluginLoadOptions, type PluginExecutionResult, type ScannerPluginContext, type ScannerPluginFn, type PluginRegistryEntry, type PluginSeverityMapping, type PluginFinding, } from "./types.js"; export { loadPlugins, executePlugins, executePluginDirect, executePluginSandboxed, PluginRegistry, } from "./loader.js"; //# sourceMappingURL=index.d.ts.map