/** * @nahisaho/musubix-codegraph - Kotlin Extractor * * AST extractor for Kotlin source files * * @see REQ-CG-MULTILANG-010 * @see DES-CG-KOTLIN * @see TSK-CG-031 */ import type { ParseResult } from '../../types.js'; import { BaseExtractor, type LanguageConfig, type SyntaxTree } from './base-extractor.js'; /** * Kotlin language extractor */ export declare class KotlinExtractor extends BaseExtractor { readonly config: LanguageConfig; extract(tree: SyntaxTree, filePath: string, sourceCode: string): ParseResult; private extractClass; private extractObject; private extractInterface; private extractFunction; private extractProperty; private extractHeritage; private extractImport; private extractKDocComment; } //# sourceMappingURL=kotlin.d.ts.map