/** * Kotlin compiler detection and installation utilities */ export declare function getDefaultKotlinPath(): string; /** * Detect kotlinc on the system. * Returns the version string if found, null otherwise. */ export declare function detectKotlinc(): Promise; /** * Install the Kotlin compiler by downloading the standalone zip from GitHub. * Installs to ~/.jetstart/kotlinc and sets KOTLIN_HOME for the current process. */ export declare function installKotlin(): Promise; //# sourceMappingURL=kotlin.d.ts.map