import { ID } from '../../commonStateTypes/common'; import { PaymentAccount, PaymentAccountState } from './paymentAccountState'; export declare function getPaymentAccountsByPaymentAccountIds(paymentAccountState: PaymentAccountState, paymentAccountIds: ID[]): PaymentAccount[]; export declare function getPaymentAccountByPaymentAccountId(paymentAccountState: PaymentAccountState, PaymentAccountId: ID): PaymentAccount | undefined; export declare function getPaymentAccountByBankAccountId(paymentAccountState: PaymentAccountState, bankAccountId: ID): PaymentAccount | undefined; export declare function getPaymentAccountsByBankAccountIds(paymentAccountState: PaymentAccountState, bankAccountIds: ID[]): PaymentAccount[]; export declare function getPlaidPaymentAccounts(paymentAccountState: PaymentAccountState): PaymentAccount[];