declare function stringify(map: Map): string | undefined; declare function parse(json: string): Map | undefined; declare function deepStringify(map: Map): string | undefined; declare function deepParse(json: string): Map | undefined; declare const _default: { stringify: typeof stringify; parse: typeof parse; deepStringify: typeof deepStringify; deepParse: typeof deepParse; }; export default _default;