import { AllSettlements, Bee, BZZ, PeerBalance } from '@ethersphere/bee-js'; interface UseAccountingHook { isLoadingUncashed: boolean; totalUncashed: BZZ; accounting: Accounting[] | null; } export interface Accounting { peer: string; uncashedAmount: BZZ; balance: BZZ; received: BZZ; sent: BZZ; total: BZZ; } export declare const useAccounting: (beeApi: Bee | null, settlements: AllSettlements | null, balances: PeerBalance[] | null) => UseAccountingHook; export {};