import type { IIxTreeNode } from '@digital-realty/ix-tree'; export interface IAccount { accountNumber?: string; parentAccountNumber?: string | null; name?: string; } export declare const mapAccountToTreeNode: (account: any, parentNode: IIxTreeNode, filterString?: string) => IIxTreeNode; export declare const mapAccountsToTreeNode: (accounts: Array, filterString?: string) => IIxTreeNode;