export declare type Point = [number, number]; export interface Rectangle { x: number; y: number; width: number; height: number; }