import React from "react"; import { WalletConfig } from "../config/types"; declare const ConfigContext: React.Context<{ config: WalletConfig; setConfig: (config: WalletConfig) => void; }>; declare const ConfigContextProvider: ({ children, config }: { children: React.ReactNode; config: WalletConfig; }) => JSX.Element; export declare const useConfig: () => { config: WalletConfig; setConfig: (config: WalletConfig) => void; }; export { ConfigContext, ConfigContextProvider };