export interface ObjectLabelValueConfiguration { pluralValue: string; singularValue: string; type: ObjectLabelValueConfigurationTypeEnum; } export declare const ObjectLabelValueConfigurationTypeEnum: { readonly Client: "CLIENT"; readonly Group: "GROUP"; readonly Branch: "BRANCH"; readonly Centre: "CENTRE"; readonly CreditOfficer: "CREDIT_OFFICER"; readonly Interest: "INTEREST"; readonly Profit: "PROFIT"; readonly ContractualInterest: "CONTRACTUAL_INTEREST"; readonly EffectiveInterest: "EFFECTIVE_INTEREST"; readonly Fee: "FEE"; readonly Loan: "LOAN"; }; export type ObjectLabelValueConfigurationTypeEnum = (typeof ObjectLabelValueConfigurationTypeEnum)[keyof typeof ObjectLabelValueConfigurationTypeEnum];