/** * DevExpress Analytics (serializer\_internal.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ export declare function _defineProperty(legacyObject: any, realObject: any, propertyName: any, newPropertyName?: any): void; export declare function _definePropertyByString(rootObject: any, ...objectPathes: string[]): void; export declare function addDisposeCallback(element: Node, callback: () => any): void; export interface IGlobalSubscribableValue { (newVal?: T): T; subscribe: (callback: (newVal: T) => void) => () => void; notifySubscribers: (newVal: T) => void; } export declare function createGlobalModuleVariableFunc(defaultVal: T, onValueChanged?: (value: T) => void): IGlobalSubscribableValue;