interface NestedRecord { [key: string]: T | NestedRecord; } /** * Convert a Map to a nested object of similar shape. * The goal is to serialize it with JSON.stringify, which Map can't do. */ export declare function mapToObject(map: Map>>): NestedRecord; export {}; //# sourceMappingURL=map-to-object.d.mts.map