import { FetchedState, ID } from '../../commonStateTypes/common'; export interface UserFinancialAccountState { financialAccountByUserId: Record; } export interface UserFinancialAccount extends FetchedState { bankAccountIds: ID[]; paymentAccountIds: ID[]; userFinancialAccountId: string; userId: ID; reimbursementAccountId?: string; reimbursementAccountType?: string; }