import type { PropsWithChildren } from 'react'; import type { TBalanceProviderOptions } from '../../hooks/balance/types'; import type { TBalanceCallback } from './types'; declare function BalanceProvider({ options, setBalance }: PropsWithChildren<{ options: TBalanceProviderOptions; setBalance: TBalanceCallback; }>): JSX.Element | null; export { BalanceProvider };