import WFWorkflowActionsInterface from '../interfaces/WF/WFWorkflowAction';
/**
 * Builds a shortcut from an array of actions.
 * @ignore
 */
export declare const buildShortcut: (actions?: WFWorkflowActionsInterface[], options?: {
    icon?: {
        color?: number | undefined;
        glyph?: number | undefined;
    } | undefined;
    showInWidget?: boolean | undefined;
} | undefined) => string;
