type Direction = 'ltr' | 'rtl'; type FocusIntent = 'first' | 'last' | 'prev' | 'next'; export declare const getFocusIntent: (event: KeyboardEvent, orientation?: any, dir?: Direction) => FocusIntent | undefined; export declare const reorderArray: (array: T[], atIdx: number) => T[]; export declare const focusFirst: (elements: HTMLElement[]) => void; export {};