/** * Fisher-Yates 洗牌算法 */ export declare const shuffle: (arr: T[]) => T[];