import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Exit Shortcut
 * @section Actions > Scripting > Control Flow
 * @icon Scripting
 *
 * Stops execution of the current shortcut and dismisses the shortcut on screen. No more actions will be run after this action.
 *
 * ```js
 * exitShortcut();
 * ```
 */
declare const exitShortcut: () => WFWorkflowAction;
export default exitShortcut;
