/** * Custom replacer for JSON.stringify that handles non-serializable types. * Converts Date to ISO string and replaces binary data, functions, symbols, * and BigInt with ''. * * @param _key - The property key (unused) * @param value - The value to process * @returns A JSON-safe value */ export declare function jsonReplacer(_key: string, value: unknown): unknown; //# sourceMappingURL=json.d.ts.map