/** * Shuffle an array using a Fisher-Yates shuffle O(n) * https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle * * Take Note: The passed array will be changed and edited in place * * @param val - Array to shuffle */ declare function shuffle(arr: unknown[]): void; export { shuffle, shuffle as default };