import { Address } from "viem";
/**
 * Returns the protocol name based on the provided strategy address.
 * @param {Address} stratAddress - The strategy address to look up.
 * @returns {string | null} - The corresponding protocol name or null if not found.
 */
export declare function getProtocolByStrategy(stratAddress: Address): string | null;
