import type { Currency } from './currency'; export interface Asset { amount: number; assetName: string; depositAccountKey?: string; encodedKey?: string; guarantorKey?: string; guarantorType?: AssetGuarantorTypeEnum; originalAmount?: number; originalCurrency?: Currency; } export declare const AssetGuarantorTypeEnum: { readonly Client: "CLIENT"; readonly Group: "GROUP"; }; export type AssetGuarantorTypeEnum = (typeof AssetGuarantorTypeEnum)[keyof typeof AssetGuarantorTypeEnum];