import type { Config } from 'wagmi'; /** * Sets the Wagmi configuration in the global store. * * @param config - The Wagmi configuration object to be stored * @returns {void} */ export declare const setWagmiConfig: (config: Config) => void; /** * Retrieves the current Wagmi configuration from the global store. * * @returns {Config | null} - The current Wagmi configuration or null if not set */ export declare const getWagmiConfig: () => Config;