export declare class Point { x: number; y: number; constructor(x?: number, y?: number); getCSS(units?: string): { left: string; top: string; }; }