import { UIArea } from "./UIArea"; /** Rectangular interaction area with rounded corners */ export declare class UIAreaRoundedRectangle extends UIArea { x: number; y: number; width: number; height: number; radius: number; /** * Creates rounded rectangular area. * * Radius clamped to half of smallest dimension. * * @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) * @param radius - Corner radius in normalized coordinates (0 to 1) */ constructor(x: number, y: number, width: number, height: number, radius: number); }