//#region src/utils/dom.d.ts declare function hasClickableParent(element: HTMLElement): boolean; /** * Escape a string so it is safe to use as a CSS identifier (id/class) inside a selector. * Prefers the native `CSS.escape` when available, falling back to a conservative * backslash-escape for non-DOM environments (SSR, tests, older runtimes). */ declare function cssEscapeIdent(value: string): string; //#endregion export { cssEscapeIdent, hasClickableParent }; //# sourceMappingURL=dom.d.ts.map