import { Account, DetailedAccount, Institution, Member } from '../'; export declare const isAccountLiability: (account: Account) => boolean; /** * Returns the balance to use as an account's spendable / starting balance. * For checking/savings accounts it uses available_balance when present and * enabled via config, otherwise the current balance. All other account types * use the current balance. Single source of truth shared by the Accounts, * Financial Strength, and Cash Flow experiences. */ export declare const getAccountStartingBalance: (account: Account, showAvailableBalance: boolean) => number; export declare const isManual: (account: Account) => boolean; export declare const usesCreditLimitField: (account: Account) => boolean; export declare const usesInterestRateField: (account: Account) => boolean; export declare const usesOriginalBalanceField: (account: Account) => boolean; export declare const augmentAccounts: (accounts: Account[], institutions: Institution[], members: Member[], shouldExcludeExternalAccounts: boolean, shouldExcludeHeldAccounts: boolean) => DetailedAccount[];