Variable SerializableObjectSchemaConst
SerializableObjectSchema: ZodObject<
    {
        fromJSON: ZodType<
            (this: void, ...args: any[]) => any,
            ZodTypeDef,
            (this: void, ...args: any[]) => any,
        >;
        toJSON: ZodType<(this: void) => any, ZodTypeDef, (this: void) => any>;
    },
    "strip",
    ZodTypeAny,
    {
        fromJSON: (this: void, ...args: any[]) => any;
        toJSON: (this: void) => any;
    },
    {
        fromJSON: (this: void, ...args: any[]) => any;
        toJSON: (this: void) => any;
    },
> = ...
Schema for a serializable object that includes methods for converting to and from JSON.