import type { PrototypeStruct } from '../index.js';
interface LastItem<T> {
    lastItem(): T | undefined;
}
export declare const lastItem: PrototypeStruct;
declare global {
    interface Array<T> extends LastItem<T> {
    }
}
export {};
//# sourceMappingURL=last-item.d.ts.map