export type CompileApplicationToWasmParams = {
    input: string;
    output: string;
    wasmEngine: string;
    enableHttpCache: boolean;
    enableExperimentalHighResolutionTimeMethods: boolean;
    enableAOT: boolean;
    aotCache: string;
    enableStackTraces: boolean;
    excludeSources: boolean;
    debugIntermediateFilesDir: string | undefined;
    wevalBin: string | undefined;
    moduleMode: boolean;
    doBundle: boolean;
    env: Record<string, string>;
};
export declare function compileApplicationToWasm(params: CompileApplicationToWasmParams): Promise<void>;
