import { Refinement } from "@tsplus/stdlib/data/Function";
import { HashSet } from "@tsplus/stdlib/collections/HashSet/definition";
import { Predicate } from "@tsplus/stdlib/data/Predicate";
/**
* Filters values out of a `HashSet` using the specified predicate.
* @tsplus static HashSet.Aspects filter
* @tsplus pipeable HashSet filter
* @tsplus location "@tsplus/stdlib/collections/HashSet/operations/filter"
*/
export declare function filter(f: Refinement): (self: HashSet) => HashSet;
export declare function filter(f: Predicate): (self: HashSet) => HashSet;
//# sourceMappingURL=filter.d.ts.map