import { UIArea } from "./UIArea"; /** Rectangular interaction area */ export declare class UIAreaRectangle extends UIArea { x: number; y: number; width: number; height: number; /** * Creates rectangular area. * * @param x - X position in normalized coordinates (0 to 1) * @param y - Y position in normalized coordinates (0 to 1) * @param width - Width in normalized coordinates (0 to 1) * @param height - Height in normalized coordinates (0 to 1) */ constructor(x: number, y: number, width: number, height: number); }