How to pass component actions to controller

Is there a way to pass component with actions to controller.? I have a component like the one bellow and I want to execute the actions on the controller rather than executing the action on the component.js file

{{action send component 
    (hash
        content(component "table-observation"
       model =row.content.observations
      expandedRowComponent=(
       componet "card-observations"
       onUPdateAttr=(perform update Attributes)
)
)
)
}}