/** * DevExpress Analytics (core\elements\margins.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 IMargins { bottom: ko.Observable | ko.Computed; left: ko.Observable | ko.Computed; right: ko.Observable | ko.Computed; top: ko.Observable | ko.Computed; } export declare class Margins implements IMargins { static defaultVal: string; static unitProperties: string[]; getInfo(): ISerializationInfoArray; constructor(left: any, right: any, top: any, bottom: number); static fromString(value?: string): Margins; toString(): string; bottom: ko.Observable | ko.Computed; left: ko.Observable | ko.Computed; right: ko.Observable | ko.Computed; top: ko.Observable | ko.Computed; }