export declare class Vector2d { constructor(x: number, y: number); get x(): number; set x(x: number); get y(): number; set y(y: number); }