/** * Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { RuntimeContext } from './runtime-context.js'; export declare class SynchronousRuntimeContext implements RuntimeContext { shouldUpdate: boolean; isSynchronous: boolean; update(progress: string | Partial, dontNotify?: boolean): Promise | void; } export declare const SyncRuntimeContext: SynchronousRuntimeContext;