/** * Minimal SuperJSON-compatible transformer so the CLI speaks the platform tRPC * server's `{ json, meta? }` wire format (log payloads are JSON-native, so no * `meta` revival is needed). Without it, remote calls fail to deserialize. */ export declare const superjsonLite: { serialize: (object: unknown) => { json: unknown; }; deserialize: (payload: unknown) => unknown; }; //# sourceMappingURL=superjson-transformer.d.ts.map