/** @module type/isMapOrSet.ts */ /** * Todo */ export declare const isMapOrSet: (obj: unknown) => obj is Map | Set; export default isMapOrSet;