import type { Element, FindOptions, FindPredicate, MaybeElement } from '../types'; export declare function findNextSibling(el: Element, match?: FindOptions | string | FindPredicate): MaybeElement; export declare function findPrevSibling(el: Element, match?: FindOptions | string | FindPredicate): MaybeElement; export declare function findNextSiblings(el: Element, match?: FindOptions | string | FindPredicate): Element[]; export declare function findPrevSiblings(el: Element, match?: FindOptions | string | FindPredicate): Element[]; export declare function findParent(el: Element, match?: FindOptions | string | FindPredicate): MaybeElement; export declare function findParents(el: Element, match?: FindOptions | string | FindPredicate): Element[]; export declare function closest(el: Element, selector: string): MaybeElement; //# sourceMappingURL=navigate.d.ts.map