// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IBalancerV3Pool { function getTokens() external view returns (IERC20[] memory); }