import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { ImmutableArray } from "@tsplus/stdlib/collections/ImmutableArray/definition"; /** * Filters the `ImmutableArray` and maps the output using the specified * function. * @tsplus static ImmutableArray.Aspects collectWithIndex * @tsplus pipeable ImmutableArray collectWithIndex * @tsplus location "@tsplus/stdlib/collections/ImmutableArray/collectWithIndex" */ export declare function collectWithIndex(f: (i: number, a: A) => Maybe): (self: ImmutableArray) => ImmutableArray; //# sourceMappingURL=collectWithIndex.d.ts.map