import { AccountBasic } from "./AccountBasic"; import { AccountInfo } from "./AccountInfo"; import { RecurringCharge } from "./RecurringCharge"; import { BankAccountInfo } from "./BankAccountInfo"; import { CardInfo } from "./CardInfo"; export declare class Account { accountId: string; transData: string; accountBasic: AccountBasic; accountInfo: [AccountInfo]; cardInfo: [CardInfo]; recurringCharge: [RecurringCharge]; bankAccountInfo: BankAccountInfo; }