import React, { ReactNode } from 'react'; interface ShowBalanceContextValue { showBalance: boolean; setShowBalance: (showBalance: boolean) => void; } interface ShowBalanceProviderProps { children: ReactNode; } export declare function ShowBalanceProvider({ children }: ShowBalanceProviderProps): React.JSX.Element; export declare const useShowBalance: () => ShowBalanceContextValue; export {};