declare function arrayLastOr<E, T>(whenEmpty: E, array: Array<T> | null | void): T | E;
export { arrayLastOr };