import { Either } from "@tsplus/stdlib/data/Either/definition"; import { ImmutableArray } from "@tsplus/stdlib/collections/ImmutableArray/definition"; /** * Separate elements based on a map function that also exposes the index. * @tsplus static ImmutableArray.Aspects partitionMapWithIndex * @tsplus pipeable ImmutableArray partitionMapWithIndex * @tsplus location "@tsplus/stdlib/collections/ImmutableArray/partitionMapWithIndex" */ export declare function partitionMapWithIndex(f: (i: number, a: A) => Either): (self: ImmutableArray) => readonly [ImmutableArray, ImmutableArray]; //# sourceMappingURL=partitionMapWithIndex.d.ts.map