// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IEpoch} from "./IEpoch.sol"; interface IStakingCollector is IEpoch { function step() external; }