import { ImmutableArray } from "@tsplus/stdlib/collections/ImmutableArray/definition"; /** * Filter values from the `ImmutableArray`. * @tsplus static ImmutableArray.Aspects filterWithIndex * @tsplus pipeable ImmutableArray filterWithIndex * @tsplus location "@tsplus/stdlib/collections/ImmutableArray/filterWithIndex" */ export declare function filterWithIndex(f: (i: number, a: A) => a is B): (self: ImmutableArray) => ImmutableArray; export declare function filterWithIndex(f: (i: number, a: A) => boolean): (self: ImmutableArray) => ImmutableArray; //# sourceMappingURL=filterWithIndex.d.ts.map