// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IRegistry} from "./IRegistry.sol"; interface IGauge { function notifyRewardAmount(address token, uint256 amount) external; function getReward(address account, address[] memory tokens) external; function registry() external view returns (IRegistry); function left(address token) external view returns (uint256); }