/** * Randomly shuffles the elements of an array * @param array Array to shuffle * @returns New array with shuffled elements * @example shuffle([1, 2, 3, 4, 5]); // [3, 5, 2, 4, 1] */ export declare const shuffle: (array: T[]) => T[];