// SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.26; import {KeyValue} from "lens-modules/contracts/core/types/Types.sol"; interface IFollowRule { function configure(bytes32 configSalt, address account, KeyValue[] calldata ruleParams) external; function processFollow( bytes32 configSalt, address originalMsgSender, address followerAccount, address accountToFollow, KeyValue[] calldata primitiveParams, KeyValue[] calldata ruleParams ) external; }