/** * @ignore */ export declare function arrayIndexOf(array: T[], item: T, comparer: (a: T, b: T) => boolean): number; /** * @ignore */ export declare function arrayIndexOfAsync(array: T[], item: T, comparer: (a: T, b: T) => boolean | Promise): Promise;