/** * Set utilities. Use this module by importing from `@sirpepe/shed/set`. */ /** * Bulk-add iterable contents to a target set. */ export declare function addAll(target: Set, ...groups: Iterable[]): void;