export interface IRowing { queryGroup(): T[]; rowToElement: (elem: T) => void; } /** * Rows to an element. * @param element * @param e */ export declare function row(element: T & IRowing, e: KeyboardEvent): void; /** * Returns the next index based on the key code. * @param group * @param currentIndex * @param keyCode */ export declare function nextIndex(group: T[], currentIndex: number, keyCode: string): number | null;