import { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, } from "@smithy/types"; import { CountClosedWorkflowExecutionsCommandInput, CountClosedWorkflowExecutionsCommandOutput, } from "./commands/CountClosedWorkflowExecutionsCommand"; import { CountOpenWorkflowExecutionsCommandInput, CountOpenWorkflowExecutionsCommandOutput, } from "./commands/CountOpenWorkflowExecutionsCommand"; import { CountPendingActivityTasksCommandInput, CountPendingActivityTasksCommandOutput, } from "./commands/CountPendingActivityTasksCommand"; import { CountPendingDecisionTasksCommandInput, CountPendingDecisionTasksCommandOutput, } from "./commands/CountPendingDecisionTasksCommand"; import { DeleteActivityTypeCommandInput, DeleteActivityTypeCommandOutput, } from "./commands/DeleteActivityTypeCommand"; import { DeleteWorkflowTypeCommandInput, DeleteWorkflowTypeCommandOutput, } from "./commands/DeleteWorkflowTypeCommand"; import { DeprecateActivityTypeCommandInput, DeprecateActivityTypeCommandOutput, } from "./commands/DeprecateActivityTypeCommand"; import { DeprecateDomainCommandInput, DeprecateDomainCommandOutput, } from "./commands/DeprecateDomainCommand"; import { DeprecateWorkflowTypeCommandInput, DeprecateWorkflowTypeCommandOutput, } from "./commands/DeprecateWorkflowTypeCommand"; import { DescribeActivityTypeCommandInput, DescribeActivityTypeCommandOutput, } from "./commands/DescribeActivityTypeCommand"; import { DescribeDomainCommandInput, DescribeDomainCommandOutput, } from "./commands/DescribeDomainCommand"; import { DescribeWorkflowExecutionCommandInput, DescribeWorkflowExecutionCommandOutput, } from "./commands/DescribeWorkflowExecutionCommand"; import { DescribeWorkflowTypeCommandInput, DescribeWorkflowTypeCommandOutput, } from "./commands/DescribeWorkflowTypeCommand"; import { GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput, } from "./commands/GetWorkflowExecutionHistoryCommand"; import { ListActivityTypesCommandInput, ListActivityTypesCommandOutput, } from "./commands/ListActivityTypesCommand"; import { ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput, } from "./commands/ListClosedWorkflowExecutionsCommand"; import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand"; import { ListOpenWorkflowExecutionsCommandInput, ListOpenWorkflowExecutionsCommandOutput, } from "./commands/ListOpenWorkflowExecutionsCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, } from "./commands/ListTagsForResourceCommand"; import { ListWorkflowTypesCommandInput, ListWorkflowTypesCommandOutput, } from "./commands/ListWorkflowTypesCommand"; import { PollForActivityTaskCommandInput, PollForActivityTaskCommandOutput, } from "./commands/PollForActivityTaskCommand"; import { PollForDecisionTaskCommandInput, PollForDecisionTaskCommandOutput, } from "./commands/PollForDecisionTaskCommand"; import { RecordActivityTaskHeartbeatCommandInput, RecordActivityTaskHeartbeatCommandOutput, } from "./commands/RecordActivityTaskHeartbeatCommand"; import { RegisterActivityTypeCommandInput, RegisterActivityTypeCommandOutput, } from "./commands/RegisterActivityTypeCommand"; import { RegisterDomainCommandInput, RegisterDomainCommandOutput, } from "./commands/RegisterDomainCommand"; import { RegisterWorkflowTypeCommandInput, RegisterWorkflowTypeCommandOutput, } from "./commands/RegisterWorkflowTypeCommand"; import { RequestCancelWorkflowExecutionCommandInput, RequestCancelWorkflowExecutionCommandOutput, } from "./commands/RequestCancelWorkflowExecutionCommand"; import { RespondActivityTaskCanceledCommandInput, RespondActivityTaskCanceledCommandOutput, } from "./commands/RespondActivityTaskCanceledCommand"; import { RespondActivityTaskCompletedCommandInput, RespondActivityTaskCompletedCommandOutput, } from "./commands/RespondActivityTaskCompletedCommand"; import { RespondActivityTaskFailedCommandInput, RespondActivityTaskFailedCommandOutput, } from "./commands/RespondActivityTaskFailedCommand"; import { RespondDecisionTaskCompletedCommandInput, RespondDecisionTaskCompletedCommandOutput, } from "./commands/RespondDecisionTaskCompletedCommand"; import { SignalWorkflowExecutionCommandInput, SignalWorkflowExecutionCommandOutput, } from "./commands/SignalWorkflowExecutionCommand"; import { StartWorkflowExecutionCommandInput, StartWorkflowExecutionCommandOutput, } from "./commands/StartWorkflowExecutionCommand"; import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { TerminateWorkflowExecutionCommandInput, TerminateWorkflowExecutionCommandOutput, } from "./commands/TerminateWorkflowExecutionCommand"; import { UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutput, } from "./commands/UndeprecateActivityTypeCommand"; import { UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput, } from "./commands/UndeprecateDomainCommand"; import { UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput, } from "./commands/UndeprecateWorkflowTypeCommand"; import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { SWFClient } from "./SWFClient"; export interface SWF { countClosedWorkflowExecutions( args: CountClosedWorkflowExecutionsCommandInput, options?: __HttpHandlerOptions, ): Promise; countClosedWorkflowExecutions( args: CountClosedWorkflowExecutionsCommandInput, cb: (err: any, data?: CountClosedWorkflowExecutionsCommandOutput) => void, ): void; countClosedWorkflowExecutions( args: CountClosedWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountClosedWorkflowExecutionsCommandOutput) => void, ): void; countOpenWorkflowExecutions( args: CountOpenWorkflowExecutionsCommandInput, options?: __HttpHandlerOptions, ): Promise; countOpenWorkflowExecutions( args: CountOpenWorkflowExecutionsCommandInput, cb: (err: any, data?: CountOpenWorkflowExecutionsCommandOutput) => void, ): void; countOpenWorkflowExecutions( args: CountOpenWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountOpenWorkflowExecutionsCommandOutput) => void, ): void; countPendingActivityTasks( args: CountPendingActivityTasksCommandInput, options?: __HttpHandlerOptions, ): Promise; countPendingActivityTasks( args: CountPendingActivityTasksCommandInput, cb: (err: any, data?: CountPendingActivityTasksCommandOutput) => void, ): void; countPendingActivityTasks( args: CountPendingActivityTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountPendingActivityTasksCommandOutput) => void, ): void; countPendingDecisionTasks( args: CountPendingDecisionTasksCommandInput, options?: __HttpHandlerOptions, ): Promise; countPendingDecisionTasks( args: CountPendingDecisionTasksCommandInput, cb: (err: any, data?: CountPendingDecisionTasksCommandOutput) => void, ): void; countPendingDecisionTasks( args: CountPendingDecisionTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CountPendingDecisionTasksCommandOutput) => void, ): void; deleteActivityType( args: DeleteActivityTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteActivityType( args: DeleteActivityTypeCommandInput, cb: (err: any, data?: DeleteActivityTypeCommandOutput) => void, ): void; deleteActivityType( args: DeleteActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteActivityTypeCommandOutput) => void, ): void; deleteWorkflowType( args: DeleteWorkflowTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; deleteWorkflowType( args: DeleteWorkflowTypeCommandInput, cb: (err: any, data?: DeleteWorkflowTypeCommandOutput) => void, ): void; deleteWorkflowType( args: DeleteWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkflowTypeCommandOutput) => void, ): void; deprecateActivityType( args: DeprecateActivityTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; deprecateActivityType( args: DeprecateActivityTypeCommandInput, cb: (err: any, data?: DeprecateActivityTypeCommandOutput) => void, ): void; deprecateActivityType( args: DeprecateActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateActivityTypeCommandOutput) => void, ): void; deprecateDomain( args: DeprecateDomainCommandInput, options?: __HttpHandlerOptions, ): Promise; deprecateDomain( args: DeprecateDomainCommandInput, cb: (err: any, data?: DeprecateDomainCommandOutput) => void, ): void; deprecateDomain( args: DeprecateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateDomainCommandOutput) => void, ): void; deprecateWorkflowType( args: DeprecateWorkflowTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; deprecateWorkflowType( args: DeprecateWorkflowTypeCommandInput, cb: (err: any, data?: DeprecateWorkflowTypeCommandOutput) => void, ): void; deprecateWorkflowType( args: DeprecateWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateWorkflowTypeCommandOutput) => void, ): void; describeActivityType( args: DescribeActivityTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; describeActivityType( args: DescribeActivityTypeCommandInput, cb: (err: any, data?: DescribeActivityTypeCommandOutput) => void, ): void; describeActivityType( args: DescribeActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActivityTypeCommandOutput) => void, ): void; describeDomain( args: DescribeDomainCommandInput, options?: __HttpHandlerOptions, ): Promise; describeDomain( args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void, ): void; describeDomain( args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void, ): void; describeWorkflowExecution( args: DescribeWorkflowExecutionCommandInput, options?: __HttpHandlerOptions, ): Promise; describeWorkflowExecution( args: DescribeWorkflowExecutionCommandInput, cb: (err: any, data?: DescribeWorkflowExecutionCommandOutput) => void, ): void; describeWorkflowExecution( args: DescribeWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkflowExecutionCommandOutput) => void, ): void; describeWorkflowType( args: DescribeWorkflowTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; describeWorkflowType( args: DescribeWorkflowTypeCommandInput, cb: (err: any, data?: DescribeWorkflowTypeCommandOutput) => void, ): void; describeWorkflowType( args: DescribeWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkflowTypeCommandOutput) => void, ): void; getWorkflowExecutionHistory( args: GetWorkflowExecutionHistoryCommandInput, options?: __HttpHandlerOptions, ): Promise; getWorkflowExecutionHistory( args: GetWorkflowExecutionHistoryCommandInput, cb: (err: any, data?: GetWorkflowExecutionHistoryCommandOutput) => void, ): void; getWorkflowExecutionHistory( args: GetWorkflowExecutionHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowExecutionHistoryCommandOutput) => void, ): void; listActivityTypes( args: ListActivityTypesCommandInput, options?: __HttpHandlerOptions, ): Promise; listActivityTypes( args: ListActivityTypesCommandInput, cb: (err: any, data?: ListActivityTypesCommandOutput) => void, ): void; listActivityTypes( args: ListActivityTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActivityTypesCommandOutput) => void, ): void; listClosedWorkflowExecutions( args: ListClosedWorkflowExecutionsCommandInput, options?: __HttpHandlerOptions, ): Promise; listClosedWorkflowExecutions( args: ListClosedWorkflowExecutionsCommandInput, cb: (err: any, data?: ListClosedWorkflowExecutionsCommandOutput) => void, ): void; listClosedWorkflowExecutions( args: ListClosedWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClosedWorkflowExecutionsCommandOutput) => void, ): void; listDomains( args: ListDomainsCommandInput, options?: __HttpHandlerOptions, ): Promise; listDomains( args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void, ): void; listDomains( args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void, ): void; listOpenWorkflowExecutions( args: ListOpenWorkflowExecutionsCommandInput, options?: __HttpHandlerOptions, ): Promise; listOpenWorkflowExecutions( args: ListOpenWorkflowExecutionsCommandInput, cb: (err: any, data?: ListOpenWorkflowExecutionsCommandOutput) => void, ): void; listOpenWorkflowExecutions( args: ListOpenWorkflowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpenWorkflowExecutionsCommandOutput) => void, ): void; listTagsForResource( args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions, ): Promise; listTagsForResource( args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void, ): void; listTagsForResource( args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void, ): void; listWorkflowTypes( args: ListWorkflowTypesCommandInput, options?: __HttpHandlerOptions, ): Promise; listWorkflowTypes( args: ListWorkflowTypesCommandInput, cb: (err: any, data?: ListWorkflowTypesCommandOutput) => void, ): void; listWorkflowTypes( args: ListWorkflowTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowTypesCommandOutput) => void, ): void; pollForActivityTask( args: PollForActivityTaskCommandInput, options?: __HttpHandlerOptions, ): Promise; pollForActivityTask( args: PollForActivityTaskCommandInput, cb: (err: any, data?: PollForActivityTaskCommandOutput) => void, ): void; pollForActivityTask( args: PollForActivityTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForActivityTaskCommandOutput) => void, ): void; pollForDecisionTask( args: PollForDecisionTaskCommandInput, options?: __HttpHandlerOptions, ): Promise; pollForDecisionTask( args: PollForDecisionTaskCommandInput, cb: (err: any, data?: PollForDecisionTaskCommandOutput) => void, ): void; pollForDecisionTask( args: PollForDecisionTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForDecisionTaskCommandOutput) => void, ): void; recordActivityTaskHeartbeat( args: RecordActivityTaskHeartbeatCommandInput, options?: __HttpHandlerOptions, ): Promise; recordActivityTaskHeartbeat( args: RecordActivityTaskHeartbeatCommandInput, cb: (err: any, data?: RecordActivityTaskHeartbeatCommandOutput) => void, ): void; recordActivityTaskHeartbeat( args: RecordActivityTaskHeartbeatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RecordActivityTaskHeartbeatCommandOutput) => void, ): void; registerActivityType( args: RegisterActivityTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; registerActivityType( args: RegisterActivityTypeCommandInput, cb: (err: any, data?: RegisterActivityTypeCommandOutput) => void, ): void; registerActivityType( args: RegisterActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterActivityTypeCommandOutput) => void, ): void; registerDomain( args: RegisterDomainCommandInput, options?: __HttpHandlerOptions, ): Promise; registerDomain( args: RegisterDomainCommandInput, cb: (err: any, data?: RegisterDomainCommandOutput) => void, ): void; registerDomain( args: RegisterDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterDomainCommandOutput) => void, ): void; registerWorkflowType( args: RegisterWorkflowTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; registerWorkflowType( args: RegisterWorkflowTypeCommandInput, cb: (err: any, data?: RegisterWorkflowTypeCommandOutput) => void, ): void; registerWorkflowType( args: RegisterWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterWorkflowTypeCommandOutput) => void, ): void; requestCancelWorkflowExecution( args: RequestCancelWorkflowExecutionCommandInput, options?: __HttpHandlerOptions, ): Promise; requestCancelWorkflowExecution( args: RequestCancelWorkflowExecutionCommandInput, cb: (err: any, data?: RequestCancelWorkflowExecutionCommandOutput) => void, ): void; requestCancelWorkflowExecution( args: RequestCancelWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestCancelWorkflowExecutionCommandOutput) => void, ): void; respondActivityTaskCanceled( args: RespondActivityTaskCanceledCommandInput, options?: __HttpHandlerOptions, ): Promise; respondActivityTaskCanceled( args: RespondActivityTaskCanceledCommandInput, cb: (err: any, data?: RespondActivityTaskCanceledCommandOutput) => void, ): void; respondActivityTaskCanceled( args: RespondActivityTaskCanceledCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondActivityTaskCanceledCommandOutput) => void, ): void; respondActivityTaskCompleted( args: RespondActivityTaskCompletedCommandInput, options?: __HttpHandlerOptions, ): Promise; respondActivityTaskCompleted( args: RespondActivityTaskCompletedCommandInput, cb: (err: any, data?: RespondActivityTaskCompletedCommandOutput) => void, ): void; respondActivityTaskCompleted( args: RespondActivityTaskCompletedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondActivityTaskCompletedCommandOutput) => void, ): void; respondActivityTaskFailed( args: RespondActivityTaskFailedCommandInput, options?: __HttpHandlerOptions, ): Promise; respondActivityTaskFailed( args: RespondActivityTaskFailedCommandInput, cb: (err: any, data?: RespondActivityTaskFailedCommandOutput) => void, ): void; respondActivityTaskFailed( args: RespondActivityTaskFailedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondActivityTaskFailedCommandOutput) => void, ): void; respondDecisionTaskCompleted( args: RespondDecisionTaskCompletedCommandInput, options?: __HttpHandlerOptions, ): Promise; respondDecisionTaskCompleted( args: RespondDecisionTaskCompletedCommandInput, cb: (err: any, data?: RespondDecisionTaskCompletedCommandOutput) => void, ): void; respondDecisionTaskCompleted( args: RespondDecisionTaskCompletedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RespondDecisionTaskCompletedCommandOutput) => void, ): void; signalWorkflowExecution( args: SignalWorkflowExecutionCommandInput, options?: __HttpHandlerOptions, ): Promise; signalWorkflowExecution( args: SignalWorkflowExecutionCommandInput, cb: (err: any, data?: SignalWorkflowExecutionCommandOutput) => void, ): void; signalWorkflowExecution( args: SignalWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SignalWorkflowExecutionCommandOutput) => void, ): void; startWorkflowExecution( args: StartWorkflowExecutionCommandInput, options?: __HttpHandlerOptions, ): Promise; startWorkflowExecution( args: StartWorkflowExecutionCommandInput, cb: (err: any, data?: StartWorkflowExecutionCommandOutput) => void, ): void; startWorkflowExecution( args: StartWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartWorkflowExecutionCommandOutput) => void, ): void; tagResource( args: TagResourceCommandInput, options?: __HttpHandlerOptions, ): Promise; tagResource( args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void, ): void; tagResource( args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void, ): void; terminateWorkflowExecution( args: TerminateWorkflowExecutionCommandInput, options?: __HttpHandlerOptions, ): Promise; terminateWorkflowExecution( args: TerminateWorkflowExecutionCommandInput, cb: (err: any, data?: TerminateWorkflowExecutionCommandOutput) => void, ): void; terminateWorkflowExecution( args: TerminateWorkflowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateWorkflowExecutionCommandOutput) => void, ): void; undeprecateActivityType( args: UndeprecateActivityTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; undeprecateActivityType( args: UndeprecateActivityTypeCommandInput, cb: (err: any, data?: UndeprecateActivityTypeCommandOutput) => void, ): void; undeprecateActivityType( args: UndeprecateActivityTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeprecateActivityTypeCommandOutput) => void, ): void; undeprecateDomain( args: UndeprecateDomainCommandInput, options?: __HttpHandlerOptions, ): Promise; undeprecateDomain( args: UndeprecateDomainCommandInput, cb: (err: any, data?: UndeprecateDomainCommandOutput) => void, ): void; undeprecateDomain( args: UndeprecateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeprecateDomainCommandOutput) => void, ): void; undeprecateWorkflowType( args: UndeprecateWorkflowTypeCommandInput, options?: __HttpHandlerOptions, ): Promise; undeprecateWorkflowType( args: UndeprecateWorkflowTypeCommandInput, cb: (err: any, data?: UndeprecateWorkflowTypeCommandOutput) => void, ): void; undeprecateWorkflowType( args: UndeprecateWorkflowTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeprecateWorkflowTypeCommandOutput) => void, ): void; untagResource( args: UntagResourceCommandInput, options?: __HttpHandlerOptions, ): Promise; untagResource( args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void, ): void; untagResource( args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void, ): void; paginateGetWorkflowExecutionHistory( args: GetWorkflowExecutionHistoryCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateListActivityTypes( args: ListActivityTypesCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateListClosedWorkflowExecutions( args: ListClosedWorkflowExecutionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateListDomains( args: ListDomainsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateListOpenWorkflowExecutions( args: ListOpenWorkflowExecutionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginateListWorkflowTypes( args: ListWorkflowTypesCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; paginatePollForDecisionTask( args: PollForDecisionTaskCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude >, ): Paginator; } export declare class SWF extends SWFClient implements SWF {}