/** * JSON security utilities for memory backends. * Prevents prototype pollution when parsing JSON from database rows. * * @module v3/memory/json-security */ /** * Parse JSON safely, stripping keys that enable prototype pollution. * Drop-in replacement for JSON.parse that filters __proto__, constructor, prototype. */ export declare function safeJsonParse(content: string): T; //# sourceMappingURL=json-security.d.ts.map