/** Access list at `i % length`. Negative indexes start indexing the last * element as `[-1]` and wrap around to the back. */ declare const atWrap: (arr: T[], i: number) => T; export default atWrap;