import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Open App
 * @section Content Types > Apps >
 * @icon Apps
 *
 * Opens the specified app.
 *
 * ```js
 * openApp({
 *   appId: 'com.christianselig.Apollo'
 * });
 * ```
 */
declare const openApp: ({ appId, }: {
    /** The App identifier */
    appId?: string | undefined;
}) => WFWorkflowAction;
export default openApp;
