/** * Returns the new index in the list, in a circular way. If next value is out of bonds from the total, * it will wrap to either 0 or itemCount - 1. * * @param {number} moveAmount Number of positions to move. Negative to move backwards, positive forwards. * @param {number} initialIndex The initial position to move from. * @param {number} itemCount The total number of items. * @returns {number} The new index after the move. */ declare const getNextWrappingIndex: (moveAmount: number, initialIndex: number | null, itemCount: number) => number; export default getNextWrappingIndex; //# sourceMappingURL=get-next-wrapping-index.d.ts.map