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