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