/** * Workflow imports stub module. * * This module provides stubs for workflow functionality needed by interceptors. * When bundled by the workflow bundler, this is replaced with the real * implementation via NormalModuleReplacementPlugin. * * @module */ import type { inWorkflowContext as inWorkflowContextT, workflowInfo as workflowInfoT, proxySinks as proxySinksT, AsyncLocalStorage as AsyncLocalStorageT, ContinueAsNew as ContinueAsNewT, getRandomStream as getRandomStreamT } from '@temporalio/workflow'; export declare const inWorkflowContext: typeof inWorkflowContextT; export declare const workflowInfo: typeof workflowInfoT; export declare const ContinueAsNew: typeof ContinueAsNewT; export declare const AsyncLocalStorage: typeof AsyncLocalStorageT; export declare const proxySinks: typeof proxySinksT; export declare const getRandomStream: typeof getRandomStreamT;