import * as ko from 'knockout'; import { ISerializationInfoArray } from '../../serializer/serializationInfo'; export interface IPoint { x: ko.Observable | ko.Computed; y: ko.Observable | ko.Computed; } export declare class Point implements IPoint { static unitProperties: string[]; constructor(x: any, y: number); getInfo(): ISerializationInfoArray; static fromString(value?: string): Point; toString(): string; x: ko.Observable | ko.Computed; y: ko.Observable | ko.Computed; }