export declare const shuffleArray: <T extends unknown>(array: T[]) => T[];
export declare const removeListDuplicates: <T extends unknown>(array: T[]) => T[];
export declare const removeListDuplicatesByKey: <T extends Record<string, any>>(array: T[], key: string) => T[];