UNPKG

@ssa-ui-kit/widgets

Version:
9 lines (8 loc) 526 B
import { AccountBalanceProps } from './types'; type ContextType = Pick<AccountBalanceProps, 'variant' | 'fullscreenModeFeature' | 'activeHighlight' | 'tooltip' | 'total' | 'title' | 'currency'>; export declare const AccountBalanceContext: import("react").Context<ContextType>; export declare const AccountBalanceProvider: ({ children, ...rest }: { children: React.ReactNode; } & ContextType) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const useAccountBalanceContext: () => ContextType; export {};