export interface Guarantor { amount: number; assetName?: string; depositAccountKey?: string; encodedKey?: string; guarantorKey: string; guarantorType: GuarantorGuarantorTypeEnum; } export declare const GuarantorGuarantorTypeEnum: { readonly Client: "CLIENT"; readonly Group: "GROUP"; }; export type GuarantorGuarantorTypeEnum = (typeof GuarantorGuarantorTypeEnum)[keyof typeof GuarantorGuarantorTypeEnum];