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 {};
