import { GlobalStore } from '../../core/stores/GlobalStore'; import { Account } from '../../core'; export interface MappedAccounts { [key: string]: MappedAccount[]; } export interface MappedAccount { accountNumber: string; name: string; guid: string; } export interface MappedOptions { [key: string]: boolean; } export declare const setupMappedSelectedOptions: (accounts: Account[], selectedAccountGuids: string[]) => MappedOptions; export declare const setupMappedAccounts: (accounts: Account[], closeContentCopy: string, globalStore?: GlobalStore) => MappedAccounts; export declare function categorizeAccounts(accounts: Account[]): { heldAccounts: Account[]; externalAccounts: Account[]; }; export declare function getDisplayAccounts(accounts: Account[], maxAccounts: number): Account[];