import { Chain } from "opensea-js";
/**
 * Supported Opensea chains
 */
export declare const supportedChains: Record<string, Chain>;
/**
 * Maps EVM chain IDs to Opensea chain
 *
 * @param chainId - The EVM chain ID to map
 * @returns The corresponding OpenSea Chain enum value
 */
export declare const chainIdToOpenseaChain: (chainId: string) => Chain;
