import type { TWalletStore } from '../../types'; declare type TBalanceProviderOptions = { updateDelay?: number; } & TWalletStore; declare type TUseBalanceOptions = { updateDelay?: number; } & Pick; export type { TUseBalanceOptions, TBalanceProviderOptions };