export declare function insertWithoutDuplicates(array: T[], item: T, newIndex: number): T[]; export declare function insertMultipleWithoutDuplicates(array: T[], items: T[], newIndex: number): T[]; export declare function removeItem(array: T[], item: T): T[];