import React from 'react'; import type { ServerSpout } from './types.js'; type NeededNext = { initData?: Record unknown>; scripts?: React.ReactNode[]; }; /** Serialize data for safe embedding in injection * - Escapes U+2028/U+2029 line separators for older browser compatibility */ export declare function serializeForScriptTag(data: unknown): string; export default function JSONSpout({ id, }?: { id?: string; }): ServerSpout, Record, NeededNext>; export {}; //# sourceMappingURL=json.server.d.ts.map