export declare const AwsStepFunctionsManagedMetricName: { EXECUTION_TIME: string; EXECUTION_THROTTLED: string; EXECUTIONS_ABORTED: string; EXECUTIONS_FAILED: string; EXECUTIONS_STARTED: string; EXECUTIONS_SUCCEEDED: string; EXECUTIONS_TIMED_OUT: string; ACTIVITY_RUN_TIME: string; ACTIVITY_SCHEDULE_TIME: string; ACTIVITY_TIME: string; ACTIVITIES_FAILED: string; ACTIVITIES_HEARTBEAT_TIMED_OUT: string; ACTIVITIES_SCHEDULED: string; ACTIVITIES_STARTED: string; ACTIVITIES_SUCCEEDED: string; ACTIVITIES_TIMED_OUT: string; LAMBDA_FUNCTION_RUN_TIME: string; LAMBDA_FUNCTION_SCHEDULE_TIME: string; LAMBDA_FUNCTION_TIME: string; LAMBDA_FUNCTIONS_FAILED: string; LAMBDA_FUNCTIONS_SCHEDULED: string; LAMBDA_FUNCTIONS_STARTED: string; LAMBDA_FUNCTIONS_SUCCEEDED: string; LAMBDA_FUNCTIONS_TIMED_OUT: string; SERVICE_INTEGRATION_RUN_TIME: string; SERVICE_INTEGRATION_SCHEDULE_TIME: string; SERVICE_INTEGRATION_TIME: string; SERVICE_INTEGRATIONS_FAILED: string; SERVICE_INTEGRATIONS_SCHEDULED: string; SERVICE_INTEGRATIONS_STARTED: string; SERVICE_INTEGRATIONS_SUCCEEDED: string; SERVICE_INTEGRATIONS_TIMED_OUT: string; THROTTLED_EVENTS: string; PROVISIONED_BUCKET_SIZE: string; PROVISIONED_REFILL_RATE: string; CONSUMED_CAPACITY: string; }; export declare const AwsStepFunctionsManagedMetricDimensionName: { STATE_MACHINE_ARN: string; ACTIVITY_ARN: string; LAMBDA_FUNCTION_ARN: string; SERVICE_INTEGRATION_RESOURCE_ARN: string; STATE_TRANSITION: string; API_NAME: string; }; export declare const AwsStepFunctionsIamPolicyAction: { CREATE_ACTIVITY: string; CREATE_STATE_MACHINE: string; DELETE_ACTIVITY: string; DELETE_STATE_MACHINE: string; DESCRIBE_ACTIVITY: string; DESCRIBE_EXECUTION: string; DESCRIBE_STATE_MACHINE: string; DESCRIBE_STATE_MACHINE_FOR_EXECUTION: string; GET_ACTIVITY_TASK: string; GET_EXECUTION_HISTORY: string; LIST_ACTIVITIES: string; LIST_EXECUTIONS: string; LIST_STATE_MACHINES: string; LIST_TAGS_FOR_RESOURCE: string; SEND_TASK_FAILURE: string; SEND_TASK_HEARTBEAT: string; SEND_TASK_SUCCESS: string; START_EXECUTION: string; START_SYNC_EXECUTION: string; STOP_EXECUTION: string; TAG_RESOURCE: string; UNTAG_RESOURCE: string; UPDATE_STATE_MACHINE: string; }; export interface CreateAwsStepFunctionsActivityArnParams { partition: string; region: string; account: string; activityName: string; } export declare const createAwsStepFunctionsActivityArn: ({ partition, region, account, activityName, }: CreateAwsStepFunctionsActivityArnParams) => string; export interface CreateAwsStepFunctionsStateMachineArnParams { partition: string; region: string; account: string; stateMachineName: string; } export declare const createAwsStepFunctionsStateMachineArn: ({ partition, region, account, stateMachineName, }: CreateAwsStepFunctionsStateMachineArnParams) => string; export interface CreateAwsStepFunctionsExecutionArnParams { partition: string; region: string; account: string; stateMachineName: string; executionId: string; } export declare const createAwsStepFunctionsExecutionArn: ({ partition, region, account, stateMachineName, executionId, }: CreateAwsStepFunctionsExecutionArnParams) => string;