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