/** * DevExpress Analytics (core\utils\_koUtils.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 */ import { Computed, MaybeSubscribable, Subscribable } from 'knockout'; import { IGlobalSubscribableValue } from '../../serializer/_internal'; export declare const koUtils: { isSubscribable: (value: MaybeSubscribable) => value is Subscribable; isComputed: (value: MaybeSubscribable) => value is Computed; unwrap: (value: MaybeSubscribable | IGlobalSubscribableValue) => T_1; };