/** * fast O(n) non-mutating algorithm to shuffle an array */ export declare function shuffle(shuffleArray: readonly ObjectType[]): ObjectType[]; /** * fast O(n) mutating algorithm to shuffle an array */ export declare function shuffleInPlace(shuffleArray: ObjectType[]): ObjectType[];