/** * Get the index of the node at a client position, or `-1`. */ export declare function hitTestNodes(nodes: HTMLElement[] | NodeList, x: number, y: number): number; /** * Find the first element matching a class name. */ export declare function findElement(parent: HTMLElement, className: string): HTMLElement;