export declare const ActivityTaskTimeoutType: { readonly HEARTBEAT: "HEARTBEAT"; readonly SCHEDULE_TO_CLOSE: "SCHEDULE_TO_CLOSE"; readonly SCHEDULE_TO_START: "SCHEDULE_TO_START"; readonly START_TO_CLOSE: "START_TO_CLOSE"; }; export type ActivityTaskTimeoutType = (typeof ActivityTaskTimeoutType)[keyof typeof ActivityTaskTimeoutType]; export declare const RegistrationStatus: { readonly DEPRECATED: "DEPRECATED"; readonly REGISTERED: "REGISTERED"; }; export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus]; export declare const CancelTimerFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly TIMER_ID_UNKNOWN: "TIMER_ID_UNKNOWN"; }; export type CancelTimerFailedCause = (typeof CancelTimerFailedCause)[keyof typeof CancelTimerFailedCause]; export declare const CancelWorkflowExecutionFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly UNHANDLED_DECISION: "UNHANDLED_DECISION"; }; export type CancelWorkflowExecutionFailedCause = (typeof CancelWorkflowExecutionFailedCause)[keyof typeof CancelWorkflowExecutionFailedCause]; export declare const ChildPolicy: { readonly ABANDON: "ABANDON"; readonly REQUEST_CANCEL: "REQUEST_CANCEL"; readonly TERMINATE: "TERMINATE"; }; export type ChildPolicy = (typeof ChildPolicy)[keyof typeof ChildPolicy]; export declare const WorkflowExecutionTimeoutType: { readonly START_TO_CLOSE: "START_TO_CLOSE"; }; export type WorkflowExecutionTimeoutType = (typeof WorkflowExecutionTimeoutType)[keyof typeof WorkflowExecutionTimeoutType]; export declare const CloseStatus: { readonly CANCELED: "CANCELED"; readonly COMPLETED: "COMPLETED"; readonly CONTINUED_AS_NEW: "CONTINUED_AS_NEW"; readonly FAILED: "FAILED"; readonly TERMINATED: "TERMINATED"; readonly TIMED_OUT: "TIMED_OUT"; }; export type CloseStatus = (typeof CloseStatus)[keyof typeof CloseStatus]; export declare const CompleteWorkflowExecutionFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly UNHANDLED_DECISION: "UNHANDLED_DECISION"; }; export type CompleteWorkflowExecutionFailedCause = (typeof CompleteWorkflowExecutionFailedCause)[keyof typeof CompleteWorkflowExecutionFailedCause]; export declare const ContinueAsNewWorkflowExecutionFailedCause: { readonly CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED: "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED"; readonly DEFAULT_CHILD_POLICY_UNDEFINED: "DEFAULT_CHILD_POLICY_UNDEFINED"; readonly DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED"; readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED"; readonly DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED"; readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly UNHANDLED_DECISION: "UNHANDLED_DECISION"; readonly WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED"; readonly WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST"; }; export type ContinueAsNewWorkflowExecutionFailedCause = (typeof ContinueAsNewWorkflowExecutionFailedCause)[keyof typeof ContinueAsNewWorkflowExecutionFailedCause]; export declare const DecisionType: { readonly CancelTimer: "CancelTimer"; readonly CancelWorkflowExecution: "CancelWorkflowExecution"; readonly CompleteWorkflowExecution: "CompleteWorkflowExecution"; readonly ContinueAsNewWorkflowExecution: "ContinueAsNewWorkflowExecution"; readonly FailWorkflowExecution: "FailWorkflowExecution"; readonly RecordMarker: "RecordMarker"; readonly RequestCancelActivityTask: "RequestCancelActivityTask"; readonly RequestCancelExternalWorkflowExecution: "RequestCancelExternalWorkflowExecution"; readonly ScheduleActivityTask: "ScheduleActivityTask"; readonly ScheduleLambdaFunction: "ScheduleLambdaFunction"; readonly SignalExternalWorkflowExecution: "SignalExternalWorkflowExecution"; readonly StartChildWorkflowExecution: "StartChildWorkflowExecution"; readonly StartTimer: "StartTimer"; }; export type DecisionType = (typeof DecisionType)[keyof typeof DecisionType]; export declare const DecisionTaskTimeoutType: { readonly SCHEDULE_TO_START: "SCHEDULE_TO_START"; readonly START_TO_CLOSE: "START_TO_CLOSE"; }; export type DecisionTaskTimeoutType = (typeof DecisionTaskTimeoutType)[keyof typeof DecisionTaskTimeoutType]; export declare const EventType: { readonly ActivityTaskCancelRequested: "ActivityTaskCancelRequested"; readonly ActivityTaskCanceled: "ActivityTaskCanceled"; readonly ActivityTaskCompleted: "ActivityTaskCompleted"; readonly ActivityTaskFailed: "ActivityTaskFailed"; readonly ActivityTaskScheduled: "ActivityTaskScheduled"; readonly ActivityTaskStarted: "ActivityTaskStarted"; readonly ActivityTaskTimedOut: "ActivityTaskTimedOut"; readonly CancelTimerFailed: "CancelTimerFailed"; readonly CancelWorkflowExecutionFailed: "CancelWorkflowExecutionFailed"; readonly ChildWorkflowExecutionCanceled: "ChildWorkflowExecutionCanceled"; readonly ChildWorkflowExecutionCompleted: "ChildWorkflowExecutionCompleted"; readonly ChildWorkflowExecutionFailed: "ChildWorkflowExecutionFailed"; readonly ChildWorkflowExecutionStarted: "ChildWorkflowExecutionStarted"; readonly ChildWorkflowExecutionTerminated: "ChildWorkflowExecutionTerminated"; readonly ChildWorkflowExecutionTimedOut: "ChildWorkflowExecutionTimedOut"; readonly CompleteWorkflowExecutionFailed: "CompleteWorkflowExecutionFailed"; readonly ContinueAsNewWorkflowExecutionFailed: "ContinueAsNewWorkflowExecutionFailed"; readonly DecisionTaskCompleted: "DecisionTaskCompleted"; readonly DecisionTaskScheduled: "DecisionTaskScheduled"; readonly DecisionTaskStarted: "DecisionTaskStarted"; readonly DecisionTaskTimedOut: "DecisionTaskTimedOut"; readonly ExternalWorkflowExecutionCancelRequested: "ExternalWorkflowExecutionCancelRequested"; readonly ExternalWorkflowExecutionSignaled: "ExternalWorkflowExecutionSignaled"; readonly FailWorkflowExecutionFailed: "FailWorkflowExecutionFailed"; readonly LambdaFunctionCompleted: "LambdaFunctionCompleted"; readonly LambdaFunctionFailed: "LambdaFunctionFailed"; readonly LambdaFunctionScheduled: "LambdaFunctionScheduled"; readonly LambdaFunctionStarted: "LambdaFunctionStarted"; readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut"; readonly MarkerRecorded: "MarkerRecorded"; readonly RecordMarkerFailed: "RecordMarkerFailed"; readonly RequestCancelActivityTaskFailed: "RequestCancelActivityTaskFailed"; readonly RequestCancelExternalWorkflowExecutionFailed: "RequestCancelExternalWorkflowExecutionFailed"; readonly RequestCancelExternalWorkflowExecutionInitiated: "RequestCancelExternalWorkflowExecutionInitiated"; readonly ScheduleActivityTaskFailed: "ScheduleActivityTaskFailed"; readonly ScheduleLambdaFunctionFailed: "ScheduleLambdaFunctionFailed"; readonly SignalExternalWorkflowExecutionFailed: "SignalExternalWorkflowExecutionFailed"; readonly SignalExternalWorkflowExecutionInitiated: "SignalExternalWorkflowExecutionInitiated"; readonly StartChildWorkflowExecutionFailed: "StartChildWorkflowExecutionFailed"; readonly StartChildWorkflowExecutionInitiated: "StartChildWorkflowExecutionInitiated"; readonly StartLambdaFunctionFailed: "StartLambdaFunctionFailed"; readonly StartTimerFailed: "StartTimerFailed"; readonly TimerCanceled: "TimerCanceled"; readonly TimerFired: "TimerFired"; readonly TimerStarted: "TimerStarted"; readonly WorkflowExecutionCancelRequested: "WorkflowExecutionCancelRequested"; readonly WorkflowExecutionCanceled: "WorkflowExecutionCanceled"; readonly WorkflowExecutionCompleted: "WorkflowExecutionCompleted"; readonly WorkflowExecutionContinuedAsNew: "WorkflowExecutionContinuedAsNew"; readonly WorkflowExecutionFailed: "WorkflowExecutionFailed"; readonly WorkflowExecutionSignaled: "WorkflowExecutionSignaled"; readonly WorkflowExecutionStarted: "WorkflowExecutionStarted"; readonly WorkflowExecutionTerminated: "WorkflowExecutionTerminated"; readonly WorkflowExecutionTimedOut: "WorkflowExecutionTimedOut"; }; export type EventType = (typeof EventType)[keyof typeof EventType]; export declare const FailWorkflowExecutionFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly UNHANDLED_DECISION: "UNHANDLED_DECISION"; }; export type FailWorkflowExecutionFailedCause = (typeof FailWorkflowExecutionFailedCause)[keyof typeof FailWorkflowExecutionFailedCause]; export declare const LambdaFunctionTimeoutType: { readonly START_TO_CLOSE: "START_TO_CLOSE"; }; export type LambdaFunctionTimeoutType = (typeof LambdaFunctionTimeoutType)[keyof typeof LambdaFunctionTimeoutType]; export declare const RecordMarkerFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; }; export type RecordMarkerFailedCause = (typeof RecordMarkerFailedCause)[keyof typeof RecordMarkerFailedCause]; export declare const RequestCancelActivityTaskFailedCause: { readonly ACTIVITY_ID_UNKNOWN: "ACTIVITY_ID_UNKNOWN"; readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; }; export type RequestCancelActivityTaskFailedCause = (typeof RequestCancelActivityTaskFailedCause)[keyof typeof RequestCancelActivityTaskFailedCause]; export declare const RequestCancelExternalWorkflowExecutionFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED: "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED"; readonly UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION: "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION"; }; export type RequestCancelExternalWorkflowExecutionFailedCause = (typeof RequestCancelExternalWorkflowExecutionFailedCause)[keyof typeof RequestCancelExternalWorkflowExecutionFailedCause]; export declare const ScheduleActivityTaskFailedCause: { readonly ACTIVITY_CREATION_RATE_EXCEEDED: "ACTIVITY_CREATION_RATE_EXCEEDED"; readonly ACTIVITY_ID_ALREADY_IN_USE: "ACTIVITY_ID_ALREADY_IN_USE"; readonly ACTIVITY_TYPE_DEPRECATED: "ACTIVITY_TYPE_DEPRECATED"; readonly ACTIVITY_TYPE_DOES_NOT_EXIST: "ACTIVITY_TYPE_DOES_NOT_EXIST"; readonly DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED: "DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED"; readonly DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED"; readonly DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED: "DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED"; readonly DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED"; readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED"; readonly OPEN_ACTIVITIES_LIMIT_EXCEEDED: "OPEN_ACTIVITIES_LIMIT_EXCEEDED"; readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; }; export type ScheduleActivityTaskFailedCause = (typeof ScheduleActivityTaskFailedCause)[keyof typeof ScheduleActivityTaskFailedCause]; export declare const ScheduleLambdaFunctionFailedCause: { readonly ID_ALREADY_IN_USE: "ID_ALREADY_IN_USE"; readonly LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED: "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED"; readonly LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION: "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION"; readonly OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED: "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED"; }; export type ScheduleLambdaFunctionFailedCause = (typeof ScheduleLambdaFunctionFailedCause)[keyof typeof ScheduleLambdaFunctionFailedCause]; export declare const SignalExternalWorkflowExecutionFailedCause: { readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED: "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED"; readonly UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION: "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION"; }; export type SignalExternalWorkflowExecutionFailedCause = (typeof SignalExternalWorkflowExecutionFailedCause)[keyof typeof SignalExternalWorkflowExecutionFailedCause]; export declare const StartChildWorkflowExecutionFailedCause: { readonly CHILD_CREATION_RATE_EXCEEDED: "CHILD_CREATION_RATE_EXCEEDED"; readonly DEFAULT_CHILD_POLICY_UNDEFINED: "DEFAULT_CHILD_POLICY_UNDEFINED"; readonly DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED"; readonly DEFAULT_TASK_LIST_UNDEFINED: "DEFAULT_TASK_LIST_UNDEFINED"; readonly DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED: "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED"; readonly OPEN_CHILDREN_LIMIT_EXCEEDED: "OPEN_CHILDREN_LIMIT_EXCEEDED"; readonly OPEN_WORKFLOWS_LIMIT_EXCEEDED: "OPEN_WORKFLOWS_LIMIT_EXCEEDED"; readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly WORKFLOW_ALREADY_RUNNING: "WORKFLOW_ALREADY_RUNNING"; readonly WORKFLOW_TYPE_DEPRECATED: "WORKFLOW_TYPE_DEPRECATED"; readonly WORKFLOW_TYPE_DOES_NOT_EXIST: "WORKFLOW_TYPE_DOES_NOT_EXIST"; }; export type StartChildWorkflowExecutionFailedCause = (typeof StartChildWorkflowExecutionFailedCause)[keyof typeof StartChildWorkflowExecutionFailedCause]; export declare const StartLambdaFunctionFailedCause: { readonly ASSUME_ROLE_FAILED: "ASSUME_ROLE_FAILED"; }; export type StartLambdaFunctionFailedCause = (typeof StartLambdaFunctionFailedCause)[keyof typeof StartLambdaFunctionFailedCause]; export declare const StartTimerFailedCause: { readonly OPEN_TIMERS_LIMIT_EXCEEDED: "OPEN_TIMERS_LIMIT_EXCEEDED"; readonly OPERATION_NOT_PERMITTED: "OPERATION_NOT_PERMITTED"; readonly TIMER_CREATION_RATE_EXCEEDED: "TIMER_CREATION_RATE_EXCEEDED"; readonly TIMER_ID_ALREADY_IN_USE: "TIMER_ID_ALREADY_IN_USE"; }; export type StartTimerFailedCause = (typeof StartTimerFailedCause)[keyof typeof StartTimerFailedCause]; export declare const WorkflowExecutionCancelRequestedCause: { readonly CHILD_POLICY_APPLIED: "CHILD_POLICY_APPLIED"; }; export type WorkflowExecutionCancelRequestedCause = (typeof WorkflowExecutionCancelRequestedCause)[keyof typeof WorkflowExecutionCancelRequestedCause]; export declare const WorkflowExecutionTerminatedCause: { readonly CHILD_POLICY_APPLIED: "CHILD_POLICY_APPLIED"; readonly EVENT_LIMIT_EXCEEDED: "EVENT_LIMIT_EXCEEDED"; readonly OPERATOR_INITIATED: "OPERATOR_INITIATED"; }; export type WorkflowExecutionTerminatedCause = (typeof WorkflowExecutionTerminatedCause)[keyof typeof WorkflowExecutionTerminatedCause]; export declare const ExecutionStatus: { readonly CLOSED: "CLOSED"; readonly OPEN: "OPEN"; }; export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];