/** * DevExpress Analytics (core\elements\size.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 { ISerializationInfoArray } from '../../serializer/serializationInfo'; export interface ISize { width: ko.Observable | ko.Computed; height: ko.Observable | ko.Computed; isPropertyDisabled: (name: string) => void; } export declare class Size implements ISize { static unitProperties: string[]; constructor(width: any, height: number); getInfo(): ISerializationInfoArray; static fromString(value?: string): Size; toString(): string; isPropertyDisabled: (name: string) => any; isPropertyVisible: (name: string) => boolean; width: ko.Observable | ko.Computed; height: ko.Observable | ko.Computed; }