/** * Python Language Provider * * Assembles all Python-specific ingestion capabilities into a single * LanguageProvider, following the Strategy pattern used by the pipeline. * * Key Python traits: * - importSemantics: 'namespace' (Python uses namespace imports, not wildcard) * - mroStrategy: 'c3' (Python C3 linearization for multiple inheritance) * - namedBindingExtractor: present (from X import Y) */ export declare const pythonProvider: import("../language-provider.js").LanguageProvider;