export declare const activateDebugMode: ({ focusableElements, }: {
    focusableElements: {
        element: Element;
        withinReach: boolean;
    }[];
}) => void;
export declare const deactivateDebugMode: () => void;
export declare const isInDebugMode: () => boolean;
