/**
 * Get nth item of Array. Negative for backward
 */
export declare function at<T>(array: readonly T[], index: number): T | undefined;
export declare function last<T>(array: readonly T[]): T | undefined;
