import * as $dara from '@darabonba/typescript'; import { DataBonreeSDKConfigModuleConfigVersionConfigsValueCustomConfigValue } from "./DataBonreeSdkconfigModuleConfigVersionConfigsValueCustomConfigValue"; export declare class DataBonreeSDKConfigModuleConfigVersionConfigsValue extends $dara.Model { /** * @remarks * Indicates whether the custom configuration is used. * * @example * true */ useCustom?: boolean; /** * @remarks * The custom configuration. */ customConfig?: { [key: string]: DataBonreeSDKConfigModuleConfigVersionConfigsValueCustomConfigValue; }; /** * @remarks * The description of the version configuration. * * @example * test */ description?: string; /** * @remarks * The time when the version configuration was updated. * * @example * 1721112372055 */ updateTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }