import { Chain } from 'viem'; export declare const CHAIN_ID = 175188; export declare const CHAIN_NAME = "Chronicle Yellowstone"; export declare const CHAIN_SYMBOL = "tstLPX"; export declare const RPC_URL = "https://yellowstone-rpc.litprotocol.com/"; export declare const EXPLORER_URL = "https://yellowstone-explorer.litprotocol.com/"; export declare const EXPLORER_NAME = "Yellowstone Explorer"; /** * Configuration for the Chronicle Yellowstone network. */ export declare const viemChainConfig: Readonly; export declare const WagmiConfig: import("@wagmi/core").Config], { [viemChainConfig.id]: import("viem").HttpTransport; }, readonly import("@wagmi/core").CreateConnectorFn[]>; /** * Resolve the effective RPC URL from an optional override. */ export declare function resolveRpcUrl(overrideRpc?: string): string; /** * Build a Chain config using the base Chronicle Yellowstone config, * applying an optional RPC override to both default and public http URLs. */ export declare function buildViemChainConfig(overrideRpc?: string): Chain;