@kryptogo/kryptogokit-sdk-react
Version:
KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.
13 lines (12 loc) • 535 B
TypeScript
import { type ReactNode } from 'react';
import type { ResponsiveValue } from '../../css/sprinkles.css';
interface ShowBalanceContextValue {
showBalance: ResponsiveValue<boolean> | undefined;
setShowBalance: (showBalance: ResponsiveValue<boolean>) => void;
}
interface ShowBalanceProviderProps {
children: ReactNode;
}
export declare function ShowBalanceProvider({ children }: ShowBalanceProviderProps): import("react/jsx-runtime").JSX.Element;
export declare const useShowBalance: () => ShowBalanceContextValue;
export {};