import { type ReactNode } from 'react'; import type { Chain } from 'wagmi/chains'; export interface KryptogoKitChain extends Chain { iconUrl?: string | (() => Promise) | null; iconBackground?: string; } interface KryptogoKitChainProviderProps { initialChain?: Chain | number; children: ReactNode; } export declare function KryptogoKitChainProvider({ children, initialChain }: KryptogoKitChainProviderProps): import("react/jsx-runtime").JSX.Element; export declare const useKryptogoKitChains: () => KryptogoKitChain[]; export declare const useInitialChainId: () => number | undefined; export declare const useKryptogoKitChainsById: () => Record; export {};