UNPKG

@spaced-out/ui-design-system

Version:
19 lines 832 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { FocusManagerProps } from '../FocusManager'; export type SkipElementFromNavigationProps = { children: React.ReactNode; className?: string; }; export declare const SkipElementFromNavigation: Flow.AbstractComponent<SkipElementFromNavigationProps, HTMLDivElement>; export type FocusManagerWithArrowKeyNavigationProps = FocusManagerProps & { cols?: number; orientation?: 'horizontal' | 'vertical'; focusItemOnOpen?: 'auto' | boolean; loop?: boolean; listReference?: { current: Array<HTMLElement>; }; }; export declare const FocusManagerWithArrowKeyNavigation: (props: FocusManagerWithArrowKeyNavigationProps) => React.JSX.Element; //# sourceMappingURL=FocusManagerWithArrowKeyNavigation.d.ts.map