import { type ReactNode } from "react"; interface BalanceContextValue { balances: Map; chainId: number; isLoading: boolean; error: Error | null; refetch: () => void; getBalance: (tokenAddress: string) => bigint | undefined; getFormattedBalance: (tokenAddress: string, decimals: number) => string; } interface BalanceProviderProps { children: ReactNode; } export declare function BalanceProvider({ children }: BalanceProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useBalances(): BalanceContextValue; export declare function useBalanceRefresh(): () => void; export {};