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