export declare function isNullOrEmpty(arrayValue: Array | Set): boolean; export declare function isNotNullAndNotEmpty(arrayValue: Array | Set): boolean; export declare function concat(list_1: T[], list_2: T[]): T[]; export declare function removeItem(list: T[], item: T): void;