import type { Config } from '../createConfig'; import type { GetChainIdReturnType } from './getChainId'; export type WatchChainIdParameters = { onChange(chainId: GetChainIdReturnType, prevChainId: GetChainIdReturnType): void; }; export type WatchChainIdReturnType = () => void; export declare function watchChainId(config: config, parameters: WatchChainIdParameters): WatchChainIdReturnType;