import { HashMap } from "@tsplus/stdlib/collections/HashMap/definition"; /** * Filters entries out of a `HashMap` using the specified predicate. * @tsplus static HashMap.Aspects filterWithIndex * @tsplus pipeable HashMap filterWithIndex * @tsplus location "@tsplus/stdlib/collections/HashMap/operations/filterWithIndex" */ export declare function filterWithIndex(f: (k: K, a: A) => a is B): (self: HashMap) => HashMap; export declare function filterWithIndex(f: (k: K, a: A) => boolean): (self: HashMap) => HashMap; //# sourceMappingURL=filterWithIndex.d.ts.map