import type { Element, FindOptions, FindPredicate, MaybeElement } from '../types'; export declare function walkElements(el: Element): Generator; export declare function findNext(el: Element, match?: FindOptions | string | FindPredicate): MaybeElement; export declare function findPrev(el: Element, match?: FindOptions | string | FindPredicate): MaybeElement; export declare function findAllNext(el: Element, match?: FindOptions | string | FindPredicate): Element[]; export declare function findAllPrev(el: Element, match?: FindOptions | string | FindPredicate): Element[]; //# sourceMappingURL=traverse.d.ts.map