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