/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * Rough polyfill for Array.findLastIndex until we target ES2023 or greater. */ export declare const findLastIndex: (array: T[], callbackFn: (value: T) => boolean) => number; /** * Rough polyfill for Array.findLast until we target ES2023 or greater. */ export declare const findLast: (array: T[], callbackFn: (value: T) => boolean) => T | undefined; //# sourceMappingURL=utils.d.ts.map