/** * Shuffles the array using the Durstenfeld shuffle in-place. * **This not cryptographically secure.** If you need a crypto-secure method, see secureIShuffle * @param array The array to shuffle * @returns the shuffled array */ export declare function ishuffle(array: T[]): T[]; /** * Shuffles the array using the Durstenfeld shuffle. * **This not cryptographically secure.** If you need a crypto-secure method, see {@link secureShuffle} * @param array The original array to shuffle * @returns The clone shuffled array */ export declare function shuffle(array: T[]): T[]; //# sourceMappingURL=shuffle.d.ts.map