/**
 * https://simple-statistics.github.io/docs/#shuffleinplace
 */
declare function shuffleInPlace<T extends any[]>(
    x: T,
    randomSource?: () => number
): T;

export default shuffleInPlace;
