/** * Pushes all items from the given array or set to the given array. * @param array - The array to push the items to * @param items - The items to push to the array */ export declare function pushAll(array: T[], items: readonly NoInfer[] | ReadonlySet>): T[];