/** * Element Selection Utilities * * Reusable utilities for element selection and selector generation. * Used by both magnifier and UI tester components. */ /** * Get the element at a specific point */ export declare function getElementAtPoint(x: number, y: number): HTMLElement | null; /** * Generate a unique CSS selector for an element * Creates a stable selector that can be used to find the element later */ export declare function generateUniqueSelector(element: HTMLElement): string; /** * Find an element by its CSS selector */ export declare function findElementBySelector(selector: string): HTMLElement | null; /** * Check if an element is a debug UI element (should be excluded from selection) */ export declare function isDebugUIElement(element: HTMLElement | null): boolean; //# sourceMappingURL=element-selector.d.ts.map