import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Continue Shortcut in App
 * @section Actions > Scripting > Control Flow
 * @icon HandoffAction
 *
 * Switches into the Shortcuts app and continues to the next action.
 *
 * ```js
 * continueShortcutInApp();
 * ```
 */
declare const continueShortcutInApp: () => WFWorkflowAction;
export default continueShortcutInApp;
