@spaced-out/ui-design-system
Version:
Sense UI components library
21 lines • 975 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { FocusManagerProps } from '../../components/FocusManager';
export interface SkipElementFromNavigationProps {
children: React.ReactNode;
className?: string;
testId?: string;
}
export declare const SkipElementFromNavigation: Flow.AbstractComponent<SkipElementFromNavigationProps, HTMLDivElement>;
export interface FocusManagerWithArrowKeyNavigationProps extends Omit<FocusManagerProps, 'cols' | 'orientation' | 'focusItemOnOpen' | 'loop' | 'listReference'> {
cols?: number;
orientation?: 'horizontal' | 'vertical';
focusItemOnOpen?: 'auto' | boolean;
loop?: boolean;
listReference?: {
current: Array<HTMLElement>;
};
testId?: string;
}
export declare const FocusManagerWithArrowKeyNavigation: (props: FocusManagerWithArrowKeyNavigationProps) => React.JSX.Element;
//# sourceMappingURL=FocusManagerWithArrowKeyNavigation.d.ts.map