import { HashSet } from "@tsplus/stdlib/collections/HashSet/definition"; /** * Checks if a value is present in the `HashSet`. If it is present, the value * will be removed from the `HashSet`, otherwise the value will be added to the * `HashSet`. * @tsplus static HashSet.Aspects toggle * @tsplus pipeable HashSet toggle * @tsplus location "@tsplus/stdlib/collections/HashSet/operations/toggle" */ export declare function toggle(value: A): (self: HashSet) => HashSet; //# sourceMappingURL=toggle.d.ts.map