import { SelectableCollection, Account } from '../models'; export declare const useAccountsStore: () => { accounts: Account[]; selectableCollection: SelectableCollection; get: { (accountId: string): Account | undefined; (accountIds: string[]): Account[]; }; init: () => void; };