/** * Language Plugins - Concrete implementations * * Exports all language plugins and provides initialization helpers. */ export { JavaPlugin } from './java.js'; export { JavaScriptPlugin } from './javascript.js'; export { PythonPlugin } from './python.js'; export { RustPlugin } from './rust.js'; export { BashPlugin } from './bash.js'; export { HtmlPlugin } from './html.js'; export { VuePlugin } from './vue.js'; export { GoPlugin } from './go.js'; /** * Register all built-in language plugins with the global registry. * Call this during analyzer initialization. */ export declare function registerBuiltinPlugins(): void; //# sourceMappingURL=index.d.ts.map