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