export interface LockSettings { cappingConstraintType?: LockSettingsCappingConstraintTypeEnum; cappingMethod?: LockSettingsCappingMethodEnum; cappingPercentage?: number; lockPeriodDays?: number; } export declare const LockSettingsCappingConstraintTypeEnum: { readonly SoftCap: "SOFT_CAP"; readonly HardCap: "HARD_CAP"; }; export type LockSettingsCappingConstraintTypeEnum = (typeof LockSettingsCappingConstraintTypeEnum)[keyof typeof LockSettingsCappingConstraintTypeEnum]; export declare const LockSettingsCappingMethodEnum: { readonly OutstandingPrincipalPercentage: "OUTSTANDING_PRINCIPAL_PERCENTAGE"; readonly OriginalPrincipalPercentage: "ORIGINAL_PRINCIPAL_PERCENTAGE"; }; export type LockSettingsCappingMethodEnum = (typeof LockSettingsCappingMethodEnum)[keyof typeof LockSettingsCappingMethodEnum];