// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "../components/IComponent.sol"; interface IComponentOwnerService { function propose(IComponent component) external; function stake(uint256 id) external; function withdraw(uint256 id) external; function pause(uint256 id) external; function unpause(uint256 id) external; function archive(uint256 id) external; }