/// import type { REPLServer, ReplOptions } from 'repl'; /** * Convert a program in the SonicWeave DSL to the Scala .scl format. * @param source Source code for a SonicWeave program. * @returns A string conforming to the [Scala format](https://www.huygens-fokker.org/scala/scl_format.html). */ export declare function toScalaScl(source: string): string; export declare function toSonicWeaveInterchange(source: string): string; /** @hidden */ export declare function repl(start: (options?: string | ReplOptions) => REPLServer): void;