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; }