/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md */ import { ArrayLikeWritable } from "./ArrayLikeWritable"; /** * Randomize array element order in-place. * Using Durstenfeld shuffle algorithm. */ export declare function shuffle>(target: T): T;