/**
 * Return the last element of the given array.
 *
 * @example last([1, 2, 3]) // => 3
 */
export declare function last<T>(array: readonly T[]): T;
//# sourceMappingURL=last.d.ts.map