UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

10 lines (9 loc) 323 B
import type { ListItemId } from "../types.js"; interface FindNextItemsProps { list: string[]; index: number; step: number; disabledItemsById?: Record<ListItemId, boolean>; } export declare const findNextIndex: ({ list, index, step, disabledItemsById }: FindNextItemsProps) => number | undefined; export {};