type StrategyItem = {
    element: Element;
    withinReach: boolean;
};
type Strategy = (options: {
    event: KeyboardEvent;
    focusableElements: Element[];
    activeElement: Element;
}) => StrategyItem[];
export declare const getByXWalkEuclidean: Strategy;
export declare const getByGrid: Strategy;
export {};
