import { IPoint } from '../../abstraction'; export declare class GPoint implements IPoint { static getOrigin(): IPoint; private _x; private _y; constructor(x: number, y: number); get x(): number; get y(): number; }