/** * Swift Language Provider * * Assembles all Swift-specific ingestion capabilities into a single * LanguageProvider, following the Strategy pattern used by the pipeline. * * Key Swift traits: * - importSemantics: 'wildcard-leaf' (Swift imports entire modules) * - heritageDefaultEdge: 'IMPLEMENTS' (protocols are more common than class inheritance) * - implicitImportWirer: all files in the same SPM target see each other */ export declare const swiftProvider: import("../language-provider.js").LanguageProvider;