declare global {
    function Λ<T>(dsl: string): (...args: any[]) => T;
    function context<T>(dsl: string): (...args: any[]) => T;
}
export * from "./core/transcriber";
export * from "./code-object";
export * from "./plug-in";
export * from "./common";
import { ITranscriber } from "./core/transcriber";
export declare function MakeDefaultTranscriber(_module: string): ITranscriber;
