export declare function mapObject(input: Input, mapper: (value: any, key: keyof Input) => any): Output; export declare function push(array: T[], ...values: T[]): T[]; export declare function remove(array: T[], targetIndex: number): T[]; export declare function replace(array: T[], targetIndex: number, newValue: T): T[];