import { Address } from "viem";
import { RemoveLiquiditySingleTokenResponse } from "../../types/types";
export declare const generatePendleRemoveLiquidityDataString: (resp: RemoveLiquiditySingleTokenResponse) => Promise<`0x${string}`>;
/**
 * Returns the Pendle market address based on the provided strategy address.
 * @param {Address} stratAddress - The strategy address to look up.
 * @returns {Address | null} - The corresponding market address or null if not found.
 */
export declare function getPendleMarketByStrategy(stratAddress: Address): Address | null;
