import {RNGFunction} from './types'; type ShuffleInPlaceFunction = (array: Array) => void; declare const shuffleInPlace: { (array: Array): void; createShuffleInPlace(rng: RNGFunction): ShuffleInPlaceFunction; }; export function createShuffleInPlace( rng: RNGFunction ): ShuffleInPlaceFunction; export default shuffleInPlace;