export declare function useBalance(): {
    balance: number | undefined;
    fetchBalance: (() => Promise<void>) | undefined;
};
