export declare function addItem(array: T[], item: T): T[]; export declare function removeItem(array: T[], item: T): T[]; export declare function findItem(array: T[], item: T): T | undefined; export declare function removeIndex(array: T[], index: number): T[]; export declare function getFirstItem(array: T[]): T | undefined; export declare function getLastItem(array: T[]): T | undefined; export declare function distinct(array: T[]): T[];