import type { IIntegerPoint } from "../types"; import { Point } from "./point"; export declare class IntegerPoint extends Point implements IIntegerPoint { value: number; constructor(time?: number, value?: number); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }