import { type ReactNode } from 'react'; import type { ResponsiveValue } from '../../css/sprinkles.css'; interface ShowBalanceContextValue { showBalance: ResponsiveValue | undefined; setShowBalance: (showBalance: ResponsiveValue) => void; } interface ShowBalanceProviderProps { children: ReactNode; } export declare function ShowBalanceProvider({ children }: ShowBalanceProviderProps): import("react/jsx-runtime").JSX.Element; export declare const useShowBalance: () => ShowBalanceContextValue; export {};