export interface LoanExposureConfiguration { exposureAmount?: number; exposureType: LoanExposureConfigurationExposureTypeEnum; } export declare const LoanExposureConfigurationExposureTypeEnum: { readonly Unlimited: "UNLIMITED"; readonly SumOfLoans: "SUM_OF_LOANS"; readonly SumOfLoansMinusSavings: "SUM_OF_LOANS_MINUS_SAVINGS"; }; export type LoanExposureConfigurationExposureTypeEnum = (typeof LoanExposureConfigurationExposureTypeEnum)[keyof typeof LoanExposureConfigurationExposureTypeEnum];