import { type ActionParameters, type AnyActionDefinition, type MaybeActionResponse, type MaybeAdminAction } from '../../types'; import { type ActionContextWithResponse } from './types'; /** * Used to execute the next action in a chain. Propagates the context to the next action. */ export declare const executeNextAction: (context: ActionContextWithResponse, nextAction: AnyActionDefinition, parameters?: ActionParameters) => Promise>;