export declare function append(array: T, item: T[keyof T]): T; export declare function removeIndex(array: T, indexItem: number): T; export declare function updateIndex(array: T, indexItem: number, item: T[keyof T]): T;