import { Context } from '../../core/context'; import { IModuleCompilerProps } from '../compile/moduleCompiler'; export declare type CompilerHub = ReturnType; export declare function createCompilerHub(ctx: Context): { compile: (props: IModuleCompilerProps) => Promise; launch: () => void; terminate: () => void; };