/** * Gets the last element of array. * * Differences from lodash: * - no special consideration is given to string-keyed values set on the array * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 68 bytes * - Micro-dash: 23 bytes */ export declare function last(array: T[]): T;