import { Account, AccountCheque, AccountCredit, AccountSavings, AccountVehicle } from '../models'; export interface GroupedAccounts { chequeAccounts: AccountCheque[]; creditAccounts: AccountCredit[]; savingsAccounts: AccountSavings[]; vehicleAccounts: AccountVehicle[]; } export declare function groupAccounts(accounts: Account[]): Promise;