export function getActionsProps(context: any, ids: any, model: any): any;
declare namespace _default {
    export { getActionsProps as getProps };
    export { evalExpressions };
}
export default _default;
/**
 * add support for expression in actions.
 * it change the action props by their expression value
 * it support the following props in the action
 * * available
 * * disabled
 * * inProgress
 * * labelExpression
 */
declare function evalExpressions(action: any, context: any, payload?: {}): any;
