// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.10; interface IStakedToken { function STAKED_TOKEN() external view returns (address); function stake(address to, uint256 amount) external; function redeem(address to, uint256 amount) external; function cooldown() external; function claimRewards(address to, uint256 amount) external; }