/**
* Find nth term of arithmetic progression from given array
* @paramarr - array containing at least 2 terms of AP
* @paramn - nth term to find (1-based)
* @returns nth term of AP
*/exportdeclarefunctionfindNthAP(arr: number[], n: number): number;
//# sourceMappingURL=index.d.ts.map