import type { Universe } from '@ephox/boss'; import { Optional } from '@ephox/katamari'; import { type Transition, type Traverse } from '@ephox/phoenix'; export interface Walks { rules?: { current: Transition; next: Transition; fallback: Optional; }[]; inclusion: (universe: Universe, next: Traverse, item: E) => boolean; } export declare const Walks: { top: Walks; all: Walks; }; //# sourceMappingURL=Walks.d.ts.map