export declare const inheritAttributes: (el: HTMLElement, attributes?: string[]) => { [k: string]: any; }; export declare const hasClass: (element: HTMLElement, cssClass: string) => boolean; export declare const hasParent: (element: HTMLElement, ...cssQueries: string[]) => boolean; export declare const containsPoint: (parent: HTMLElement, x: number, y: number) => boolean;