import { AccountBase } from '@zeniai/client-epic-state'; import { GroupedOption } from '../../../../formElements/labeledGroupedSingleSelectWithCOT/GroupedSingleSelectFieldWithCOT'; /** Same value used for each credit option `value` in the transfer drawer. */ export declare function transferAccountOptionValue(account: AccountBase): string; export declare function resolveDebitIdForCreditFilter(debitFromTransaction: string, accounts: AccountBase[]): string; export declare function getGroupedTransferAccountOptions(accounts: AccountBase[]): GroupedOption[]; /** * Bank-only grouped options, used for the source (debit) account picker when a * `vendor_credit` is being converted to a credit-card payment — the debit side of * a credit-card payment must be a bank account. */ export declare function getGroupedBankAccountOptions(accounts: AccountBase[]): GroupedOption[]; export declare function filterOutAccount(options: GroupedOption[], valueToExclude: string): GroupedOption[];