How to get the HTTP response singleton (\Magento\Framework\App\ResponseInterface, \Magento\Framework\App\Response\Http) for the current controller?

/** @var \Magento\Framework\App\ObjectManager $om */
$om = \Magento\Framework\App\ObjectManager::getInstance();
/** @var \Magento\Framework\App\ResponseInterface|\Magento\Framework\App\Response\Http $response */
$response = $om->get('Magento\Framework\App\ResponseInterface');