import type { IPoint } from "../types"; import { XmlObject } from "../XmlObject"; export declare abstract class Point extends XmlObject implements IPoint { time: number; constructor(time?: number); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }