export declare function firstObject(array: T[]): T | null; export declare function lastObject(array: T[]): T | null; export declare function nextObject(array: T[], currentItem: T, repeat?: boolean): T | null; export declare function previousObject(array: T[], currentItem: T, repeat?: boolean): T | null;