/** * DevExpress Analytics (query-builder\widgets\_rightPanelSwitcher.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 * as ko from 'knockout'; import { Disposable } from '../../serializer/disposable'; interface IRightPanelSwitcher { visible: ko.PureComputed; toogle: () => void; title: string; disabled: ko.Subscribable; } export declare class RightPanelSwitcher extends Disposable implements IRightPanelSwitcher { private editableObj; private getDisplayName; private _collapsed; constructor(collapsed: ko.Subscribable, editableObj: ko.Observable, visibleCondition: (model: any) => boolean, getDisplayName: (editableObj: ko.Observable) => string); visible: ko.PureComputed; dispose(): void; toogle(): void; get title(): string; disabled: ko.Subscribable; } export {};