import { TAssetsResponse, IAsset, IAccount } from '../interface';
export default function <ASSETS extends Record<string, IAsset>, ACCOUNTS extends Record<string, IAccount<ASSETS>>>(assets: ASSETS, accounts: ACCOUNTS): TAssetsResponse<ASSETS>;
