// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title IReceiver - receives keystone reports interface IReceiver { function onReport(bytes32 workflowId, address workflowOwner, bytes calldata report) external; }