import type { SugarElement } from '../node/SugarElement'; declare const any: (selector: string) => boolean; declare const ancestor: (scope: SugarElement, selector: string, isRoot?: (e: SugarElement) => boolean) => boolean; declare const sibling: (scope: SugarElement, selector: string) => boolean; declare const child: (scope: SugarElement, selector: string) => boolean; declare const descendant: (scope: SugarElement, selector: string) => boolean; declare const closest: (scope: SugarElement, selector: string, isRoot?: (e: SugarElement) => boolean) => boolean; export { any, ancestor, sibling, child, descendant, closest }; //# sourceMappingURL=SelectorExists.d.ts.map