/** Configuration options for UIAnchor */ export interface UIAnchorOptions { /** X coordinate in world units */ x: number; /** Y coordinate in world units */ y: number; /** Identifier for debugging */ name: string; } export declare const ANCHOR_DEFAULT_X = 0; export declare const ANCHOR_DEFAULT_Y = 0; export declare const ANCHOR_DEFAULT_NAME = "";